-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@sentre/otc",
"version": "1.0.5",
"main": "dist/app/index.js",
"scripts": {
"start": "nodemon app/index.ts",
"build": "yarn clean && tsc",
"clean": "rm -rf ./dist",
"predocs": "typedoc --excludePrivate --excludeProtected --includeVersion ./app/index.ts",
"docs": "echo sdk.kylan.so >> ./docs/CNAME && gh-pages -d docs",
"pretest": "yarn build",
"test": "mocha --require ts-node/register -t 120000 lib-test/**/*.test.ts"
},
"author": "Tu Phan <tuphan@descartes.network>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DescartesNetwork/sen-otc-prog.git"
},
"bugs": {
"url": "https://github.com/DescartesNetwork/sen-otc-prog/issues"
},
"homepage": "https://otc.sentre.io",
"keywords": [
"solana",
"sentre",
"otc"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16 <=18"
},
"dependencies": {
"@project-serum/anchor": "^0.24.2",
"bs58": "^5.0.0",
"js-sha3": "^0.8.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.34",
"chai": "^4.3.4",
"gh-pages": "^4.0.0",
"mocha": "^9.0.3",
"ts-mocha": "^10.0.0",
"ts-node": "^7.0.1",
"typedoc": "^0.23.21",
"typescript": "^4.3.5"
}
}