forked from rise-tools/rise-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rise-tools",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*",
"example/*",
"docs"
],
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"postinstall": "npm run check-deps",
"build": "tsc --build tsconfig.build.json --force --verbose",
"watch": "tsc --build tsconfig.build.json --watch",
"clean": "del-cli ./packages/*/lib ./packages/*/*.tsbuildinfo",
"check-deps": "check-dependency-version-consistency .",
"test": "vitest --silent",
"release": "npm run clean && npm run build && release-it"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^5.0.0",
"@testing-library/react": "^14.2.2",
"@tsconfig/node18": "^18.2.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.3.1",
"check-dependency-version-consistency": "^3.0.3",
"commitlint": "^17.0.2",
"del-cli": "^5.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"release-it": "^15.4.1",
"typescript": "^5.1.3",
"vitest": "^2.0.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": false,
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
},
"@release-it-plugins/workspaces": {
"workspaces": [
"packages/*",
"templates/*"
],
"additionalManifests": {
"dependencyUpdates": [
"apps/*/package.json",
"example/*/package.json"
]
}
}
}
},
"version": "0.6.1"
}