-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
37 lines (37 loc) · 2.11 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
{
"name": "@aragon/sdk",
"version": "0.1.0",
"description": "Aragon JS SDK",
"repository": "https://github.com/aragon/sdk/tree/main",
"author": "Aragon Association",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"modules/*"
]
},
"jest": {
"preset": "ts-jest",
"testTimeout": 20000,
"testEnvironment": "./test-environment.js"
},
"scripts": {
"clean": "rm -Rf node_modules ./modules/*/node_modules ./modules/*/dist ./modules/*/.turbo",
"lint": "tsdx lint modules/*/src",
"build": "yarn turbo run build",
"test": "yarn workspaces run test",
"docs:client": "jsdoc2md --partial docs/tweaks/*.hbs --helper docs/tweaks/*.js --files ./modules/client/src/*.ts ./modules/client/src/internal/client/*.ts --configure ./jsdoc2md.json > ./docs/sdk/02-reference-guide/01-client.md",
"docs:multisig": "jsdoc2md --partial docs/tweaks/*.hbs --helper docs/tweaks/*.js --files ./modules/client/src/multisig/*.ts ./modules/client/src/multisig/internal/client/*.ts --configure ./jsdoc2md.json > ./docs/sdk/02-reference-guide/02-multisig.md",
"docs:tokenVoting": "jsdoc2md --partial docs/tweaks/*.hbs --helper docs/tweaks/*.js --files ./modules/client/src/tokenVoting/*.ts ./modules/client/src/tokenVoting/internal/client/*.ts --configure ./jsdoc2md.json > ./docs/sdk/02-reference-guide/03-token-voting.md",
"docs:addresslistVoting": "jsdoc2md --partial docs/tweaks/*.hbs --helper docs/tweaks/*.js --files ./modules/client/src/addresslistVoting/*.ts ./modules/client/src/addresslistVoting/internal/client/*.ts --configure ./jsdoc2md.json > ./docs/sdk/02-reference-guide/04-addresslist-voting.md",
"docs:examples": "node ./modules/client/scripts/generate-markdown.js ./modules/client/examples && rsync -avr --prune-empty-dirs --remove-source-files --include='*/' --include='*.md' --exclude='*' ./modules/client/examples/ ./docs/sdk/01-examples/ --delete;"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.1",
"turbo": "^1.1.9"
}
}