-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 842 Bytes
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": "@bravejs/toolkit",
"version": "0.0.0",
"description": "🧰 bravejs toolkit 🛠️",
"type": "module",
"scripts": {
"init": "node ./scripts/init-package.js",
"build": "rollup -c",
"test": "jest",
"prepare": "husky"
},
"author": "shixianqin",
"license": "MIT",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/bravejs/toolkit.git"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.4.8",
"del": "^7.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"rollup": "^4.12.1",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
}
}