-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.9 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
{
"name": "typink.dev",
"private": true,
"author": "Thang X. Vu <thang@dedot.dev>",
"packageManager": "yarn@4.3.1",
"workspaces": [
"packages/*",
"examples/*",
"e2e/*"
],
"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",
"fix-esm-path": "npx tsc-esm-fix --src=packages --ext=.js",
"copy-files-to-dist": "npx lerna exec --no-private -- npx tsx \\$LERNA_ROOT_PATH/scripts/copy-files-to-dist.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",
"publish:pre": "yarn build && npx lerna publish prerelease -m \"chore(release): publish %s - [skip ci]\" --force-publish --no-private",
"publish:minor": "yarn build && npx lerna publish minor -m \"chore(release): publish %s - [skip ci]\" --force-publish --no-private"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@testing-library/react-hooks": "^8.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"husky": "^8.0.3",
"jsdom": "^25.0.1",
"lerna": "^7.4.2",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^3.2.4",
"tsc-esm-fix": "^2.20.27",
"tsx": "^4.19.2",
"typescript": "^5.2.2",
"vitest": "^2.1.8"
},
"resolutions": {
"@polkadot/keyring": "^13.2.3",
"@polkadot/types": "^15.0.1",
"@polkadot/util-crypto": "^13.2.3"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}