-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8fcf2b
commit ae4acb5
Showing
1 changed file
with
91 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,93 @@ | ||
{ | ||
"name": "@cks-systems/manifest-sdk", | ||
"version": "0.1.64", | ||
"files": [ | ||
"dist/", | ||
"README.md", | ||
"client/ts/src" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"description": "TypeScript SDK for Manifest", | ||
"keywords": [ | ||
"manifest", | ||
"solana", | ||
"defi", | ||
"dex", | ||
"clob" | ||
], | ||
"author": "CKS Systems", | ||
"repository": "https://github.com/CKS-Systems/manifest", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"types": "./dist/types/src/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"prepublishOnly": "cp README.md README.back.md && cp ./client/ts/README.md README.md", | ||
"postpublish": "mv README.back.md README.md", | ||
"build": "rimraf dist && yarn build:browser && yarn build:node && yarn build:types", | ||
"build:node": "tsc -p tsconfig.cjs.json --noEmit false", | ||
"build:browser": "tsc -p tsconfig.esm.json --noEmit false", | ||
"build:types": "tsc -p tsconfig.types.json --noEmit false", | ||
"format": "prettier --check client/ts", | ||
"lint": "eslint client/ts/**/*.ts --ext ts --ext tsx --ext js --quiet", | ||
"typecheck": "tsc --noEmit --pretty", | ||
"validate": "yarn lint && yarn format", | ||
"prepare": "yarn build", | ||
"clean": "rm -rf dist", | ||
"test": "TS_NODE_PROJECT='./tsconfig.cjs.json' nyc --reporter=lcov ts-mocha client/ts/tests/*.ts --parallel --jobs 64 --timeout 1200000" | ||
}, | ||
"dependencies": { | ||
"@metaplex-foundation/beet": "^0.7.1", | ||
"@metaplex-foundation/rustbin": "^0.3.1", | ||
"@metaplex-foundation/solita": "^0.12.2", | ||
"@solana/spl-token": "^0.4.8", | ||
"@solana/web3.js": "^1.95.1", | ||
"bn.js": "^5.2.1", | ||
"borsh": "^0.7.0", | ||
"bs58": "^6.0.0", | ||
"js-sha256": "^0.11.0", | ||
"keccak256": "^1.0.6", | ||
"percentile": "^1.6.0", | ||
"prom-client": "^15.1.3", | ||
"rimraf": "^5.0.10", | ||
"typedoc": "^0.26.3", | ||
"ws": "^8.18.0", | ||
"zstddec": "^0.0.2" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"useTabs": false, | ||
"bracketSpacing": true, | ||
"semi": true, | ||
"tabWidth": 2 | ||
}, | ||
"devDependencies": { | ||
"@types/bn.js": "^5.1.1", | ||
"@types/chai": "^4.3.4", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^22.7.8", | ||
"@typescript-eslint/eslint-plugin": "^7.16.0", | ||
"@typescript-eslint/parser": "^7.16.0", | ||
"chai": "^4.3.7", | ||
"codecov": "^3.8.3", | ||
"eslint": "^8.35.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"mocha": "^10.2.0", | ||
"nyc": "^17.0.0", | ||
"prettier": "^3.3.2", | ||
"rpc-websockets": "^7.5.1", | ||
"ts-mocha": "^10.0.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.5.3" | ||
}, | ||
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e", | ||
"resolutions": { | ||
"strip-ansi": "6.0.1", | ||
"string-width": "4.2.2", | ||
"wrap-ansi": "7.0.0" | ||
} | ||
"name": "@cks-systems/manifest-sdk", | ||
"version": "0.1.65", | ||
"files": [ | ||
"dist/", | ||
"README.md", | ||
"client/ts/src" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"description": "TypeScript SDK for Manifest", | ||
"keywords": [ | ||
"manifest", | ||
"solana", | ||
"defi", | ||
"dex", | ||
"clob" | ||
], | ||
"author": "CKS Systems", | ||
"repository": "https://github.com/CKS-Systems/manifest", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"types": "./dist/types/src/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"prepublishOnly": "cp README.md README.back.md && cp ./client/ts/README.md README.md", | ||
"postpublish": "mv README.back.md README.md", | ||
"build": "rimraf dist && yarn build:browser && yarn build:node && yarn build:types", | ||
"build:node": "tsc -p tsconfig.cjs.json --noEmit false", | ||
"build:browser": "tsc -p tsconfig.esm.json --noEmit false", | ||
"build:types": "tsc -p tsconfig.types.json --noEmit false", | ||
"format": "prettier --check client/ts", | ||
"lint": "eslint client/ts/**/*.ts --ext ts --ext tsx --ext js --quiet", | ||
"typecheck": "tsc --noEmit --pretty", | ||
"validate": "yarn lint && yarn format", | ||
"prepare": "yarn build", | ||
"clean": "rm -rf dist", | ||
"test": "TS_NODE_PROJECT='./tsconfig.cjs.json' nyc --reporter=lcov ts-mocha client/ts/tests/*.ts --parallel --jobs 64 --timeout 1200000" | ||
}, | ||
"dependencies": { | ||
"@metaplex-foundation/beet": "^0.7.1", | ||
"@metaplex-foundation/rustbin": "^0.3.1", | ||
"@metaplex-foundation/solita": "^0.12.2", | ||
"@solana/spl-token": "^0.4.8", | ||
"@solana/web3.js": "^1.95.1", | ||
"bn.js": "^5.2.1", | ||
"borsh": "^0.7.0", | ||
"bs58": "^6.0.0", | ||
"js-sha256": "^0.11.0", | ||
"keccak256": "^1.0.6", | ||
"percentile": "^1.6.0", | ||
"prom-client": "^15.1.3", | ||
"rimraf": "^5.0.10", | ||
"typedoc": "^0.26.3", | ||
"ws": "^8.18.0", | ||
"zstddec": "^0.0.2" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"useTabs": false, | ||
"bracketSpacing": true, | ||
"semi": true, | ||
"tabWidth": 2 | ||
}, | ||
"devDependencies": { | ||
"@types/bn.js": "^5.1.1", | ||
"@types/chai": "^4.3.4", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^22.7.8", | ||
"@typescript-eslint/eslint-plugin": "^7.16.0", | ||
"@typescript-eslint/parser": "^7.16.0", | ||
"chai": "^4.3.7", | ||
"codecov": "^3.8.3", | ||
"eslint": "^8.35.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"mocha": "^10.2.0", | ||
"nyc": "^17.0.0", | ||
"prettier": "^3.3.2", | ||
"rpc-websockets": "^7.5.1", | ||
"ts-mocha": "^10.0.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.5.3" | ||
}, | ||
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e", | ||
"resolutions": { | ||
"strip-ansi": "6.0.1", | ||
"string-width": "4.2.2", | ||
"wrap-ansi": "7.0.0" | ||
} | ||
} |