-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "@univerjs/create-cli",
"type": "module",
"version": "0.6.5",
"description": "Command-line tool for quickly playing with Univer.",
"author": "DreamNum <[email protected]>",
"license": "Apache-2.0",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"bin": {
"create-cli": "index.js"
},
"scripts": {
"prepare": "simple-git-hooks",
"dev": "node ./esbuild.config.mjs --watch",
"build": "node ./esbuild.config.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "release-it"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"commander": "^12.1.0",
"consola": "^3.2.3",
"ejs": "^3.1.10",
"fs-extra": "^11.2.0",
"os-locale": "^6.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.26.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"esbuild": "^0.23.1",
"esbuild-plugin-clean": "^1.0.1",
"eslint": "^9.9.0",
"lint-staged": "^15.2.9",
"minimist": "^1.2.8",
"release-it": "^17.6.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}