-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 2.14 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
{
"name": "dedot.dev",
"private": true,
"author": "Thang X. Vu <thang@coongcrafts.io>",
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*",
"examples/*",
"zombienet-tests"
],
"scripts": {
"build": "yarn clean && npx lerna run build --no-private",
"clean": "npx lerna run clean",
"test": "npx lerna run --no-bail --verbose test",
"prettify": "npx prettier --write \"{packages,scripts}/{**/*,*}.{js,ts,jsx,tsx,json,mjs}\"",
"check-format": "npx prettier --check \"{packages,scripts}/{**/*,*}.{js,ts,jsx,tsx,json,mjs}\"",
"prepublishOnly": "yarn copy-files-to-dist",
"postinstall": "husky install",
"copy-files-to-dist": "npx lerna exec --no-private -- node \\$LERNA_ROOT_PATH/scripts/copy-files-to-dist.js",
"fix-esm-path": "npx tsc-esm-fix --src=packages --ext=.js",
"cli": "ts-node packages/cli/src/index.ts",
"publish:next": "yarn build && npx lerna publish prerelease --canary --preid next.$(git rev-parse --short=8 HEAD) --dist-tag next --force-publish --no-private --no-git-tag-version --yes",
"publish:pre": "yarn build && npx lerna publish prerelease -m \"chore(release): publish %s - [skip ci]\" --force-publish --no-private",
"zombienet-test-preps": "npx lerna exec --no-private -- node \\$LERNA_ROOT_PATH/scripts/zombienet-tests-preps.js",
"gen:chaintypes-substrate": "yarn cli chaintypes -w substrate -c substrate -o ./packages/api/src/chaintypes -d=false -s=false && yarn fix-esm-path",
"typedoc": "yarn build && npx typedoc"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.7",
"@polkadot/types-support": "^14.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"happy-dom": "^15.0.0",
"husky": "^9.1.4",
"lerna": "7.4.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-node": "^10.9.2",
"tsc-esm-fix": "^2.20.27",
"typedoc": "^0.26.7",
"typescript": "5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.2"
},
"resolutions": {
"@polkadot/types": "^13.1.1",
"@polkadot/types-support": "^13.1.1"
},
"engines": {
"node": ">=18"
},
"license": "Apache-2.0"
}