-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (52 loc) · 1.76 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": "siennajs",
"version": "4.1.0",
"description": "Sienna Network official API client for JavaScript and TypeScript.",
"homepage": "https://sienna.network",
"repository": { "type": "git", "url": "https://github.com/SiennaNetwork/siennajs" },
"bugs": { "url": "https://github.com/SiennaNetwork/siennajs/issues" },
"author": "Sienna Network",
"license": "MIT",
"type": "module",
"main": "./index.ts",
"engines": { "node": "^12.16 || >=13.7" },
"scripts": {
"prepare": "husky install",
"check": "tsc --noEmit",
"typedoc": "NODE_OPTIONS=--max_old_space_size=8192 time ./node_modules/.bin/typedoc --tsconfig ./tsconfig.json --entryPointStrategy packages --entryPoints . --name SiennaJS",
"ubik": "npm run check && ubik",
"test": "true || ensuite SPEC.ts.md",
"jest": "jest",
"bundle:cjs": "rollup -c .rollup-cjs.config.mjs",
"bundle:esm": "rollup -c .rollup-esm.config.mjs"
},
"files": [ "*.ts" ],
"dependencies": {
"@fadroma/scrt": "^8.0.3",
"@fadroma/tokens": "^7.1",
"@hackbg/4mat": "^1.0.0",
"crypto-js": "^4.1.1",
"merkletreejs": "^0.2.32",
"@waiting/base64": "4.2.9"
},
"devDependencies": {
"@hackbg/ubik": "^1.2",
"@hackbg/ensuite": "^1.1.1",
"rollup": "^2.79.1",
"@rollup/plugin-node-resolve": "^15",
"@rollup/plugin-commonjs": "^23",
"@rollup/plugin-json": "^5",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^28.1.7",
"@types/node": "latest",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.9",
"typedoc": "^0.23.25",
"husky": "^8.0.3",
"lint-staged": "^13.1.2"
},
"lint-staged": {
"*.ts": "pnpm check"
}
}