forked from kunlunjs/config-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "@doremijs/fe-conf",
"version": "0.4.0",
"description": "基础的前端项目配置生成器,适合项目初始化的时候使用,或者完善当前项目的配置。生成的配置文件只作为通用设置,具体项目仍然需要做进一步修改以适配项目需要。",
"homepage": "https://github.com/doremijs/config-generator#readme",
"bugs": {
"url": "https://github.com/doremijs/config-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doremijs/config-generator.git"
},
"license": "MIT",
"author": "erguotou525@gmail.com",
"main": "dist/index.js",
"bin": {
"fe-conf": "./bin/main.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc && npm run copy",
"copy": "rsync -avzP src/generator dist --exclude=\"index.ts\"",
"format": "biome check --write .",
"postinstall": "igit install",
"lint": "biome check --write",
"prepublishOnly": "npm run build && ts-node scripts/publish.ts before",
"postpublish": "ts-node scripts/publish.ts after",
"start": "ts-node src/main.ts"
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"core-js": "3",
"ejs": "^3.1.6",
"fast-glob": "^3.2.5",
"fs-extra": "^9.1.0",
"prompts": "^2.4.1",
"shelljs": "^0.8.4",
"sort-package-json": "^1.49.0"
},
"devDependencies": {
"@doremijs/biome-config": "^0.2.0",
"@doremijs/igit-cli": "^0.0.10-fix1",
"@types/ejs": "^3.0.6",
"@types/fs-extra": "^9.0.10",
"@types/node": "^14.14.37",
"@types/prompts": "^2.0.10",
"ts-node": "^10.9.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}