serum-dev-tools/ts/package.json

60 lines
1.5 KiB
JSON

{
"name": "@project-serum/serum-dev-tools",
"version": "0.0.4",
"description": "developer tooling suite for building on serum",
"repository": {
"type": "git",
"url": "https://github.com/project-serum/serum-dev-tools.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Sayantan Karmakar",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/; tsc -p tsconfig.cjs.json",
"test": "ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts",
"prepare": "cd .. && husky install ts/.husky",
"lint": "eslint --fix",
"docs": "typedoc --entryPoints src/index.ts",
"publish": "yarn build && npm publish"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"chai": "^4.3.6",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.0",
"lint-staged": "^12.3.7",
"mocha": "^9.2.2",
"prettier": "^2.6.1",
"ts-mocha": "^9.0.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"dependencies": {
"@project-serum/serum": "^0.13.62",
"@solana/spl-token": "^0.2.0",
"@solana/web3.js": "^1.37.0",
"axios": "^0.27.2",
"bn.js": "^5.2.0"
}
}