-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
39 lines (39 loc) · 1.28 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
{
"private": true,
"name": "reskript",
"version": "0.0.1",
"repository": "https://github.com/ecomfe/reskript",
"author": "otakustay <[email protected]>",
"engines": {
"node": ">=14.18.0 || >= 16.10.0"
},
"license": "MIT",
"scripts": {
"lint": "lerna run --no-bail lint",
"test": "lerna run test",
"build": "lerna run build",
"build-clean": "lerna run clean && npm run build",
"release": "lerna version --conventional-commits --no-push --force-publish",
"release-beta": "npm run release -- --conventional-prerelease --preid=beta",
"ci": "pnpm install --frozen-lockfile && npm run build-clean && npm run lint && npm run test",
"preversion": "npm run ci",
"prepack": "pnpm install --frozen-lockfile && npm run build-clean && sh scripts/build-check.sh",
"deploy": "lerna publish from-package",
"deploy-next": "npm run deploy -- --dist-tag=next --pre-dist-tag=next",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"husky": "^8.0.3",
"lerna": "^7.3.0",
"semver": "^7.5.4",
"typescript": "next",
"undici": "^5.25.4",
"yargs": "^17.7.2"
},
"resolutions": {
"@types/react": "18.x",
"@types/react-dom": "18.x"
}
}