-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.61 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
{
"name": "dedot.dev",
"private": true,
"author": "Thang X. Vu <thang@coongcrafts.io>",
"packageManager": "yarn@4.3.1",
"workspaces": [
"packages/*"
],
"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 -- npx ts-node \\$LERNA_ROOT_PATH/scripts/copy-files-to-dist.ts",
"publish:next": "yarn gen && 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 gen && yarn build && npx lerna publish prerelease -m \"chore(release): publish %s - [skip ci]\" --force-publish --no-private",
"publish:minor": "yarn gen && yarn build && npx lerna publish minor -m \"chore(release): publish %s - [skip ci]\" --force-publish --no-private",
"gen": "npx ts-node ./scripts/gen.ts"
},
"devDependencies": {
"@dedot/codegen": "^0.6.1",
"@polkadot/types-support": "~14.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"husky": "^8.0.3",
"lerna": "^7.4.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.3",
"ts-node": "^10.9.1",
"typescript": "5.4.5"
},
"license": "Apache-2.0"
}