-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 KB
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
{
"name": "create-widget",
"version": "24.1.1-beta.53",
"private": false,
"description": "An easy way to start a Widget project",
"author": "Neo Fu <rtugeek@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
"bin": {
"create-widget": "bin/index.js"
},
"files": [
"bin/index.js",
"template",
"unocss",
"github-page",
"eslint"
],
"engines": {
"node": ">=v16.20.0"
},
"scripts": {
"build": "tsup-node build src/index.ts",
"watch": "tsup-node src/index.ts --format cjs --watch",
"build:run": "npm run build && npm exec create-widget",
"test": "node index.cjs",
"update:version": "esno scripts/updateVersion.ts",
"pnpm:publish": "npm run build && pnpm publish --no-git-checks",
"link": "pnpm link --global",
"lint:fix": "eslint"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/node22": "^22.0.5",
"@types/ejs": "latest",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.2",
"@types/minimist": "^1.2.5",
"@types/node": "^18.11.13",
"@types/prompts": "^2.4.9",
"eslint": "8.48.0",
"esno": "^4.0.0",
"ora": "^6.2.0",
"package-json": "^10.0.1",
"tsup": "^8.3.5",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}