serum-dev-tools/ts/package.json

52 lines
1.3 KiB
JSON

{
"name": "serum-dev-tools",
"version": "1.0.0",
"description": "developer tooling suite for building on serum",
"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",
"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"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
]
},
"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"
}
}