forked from ice-lab/build-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "build-scripts",
"version": "2.0.0",
"license": "MIT",
"description": "scripts core",
"main": "lib/index.js",
"type": "module",
"types": "lib",
"files": [
"lib",
"bin"
],
"exports": "./lib/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "tsc -w"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"repository": {
"type": "http",
"url": "https://github.com/ice-lab/build-scripts"
},
"dependencies": {
"camelcase": "^5.3.1",
"commander": "^2.19.0",
"consola": "^2.15.3",
"deepmerge": "^4.0.0",
"esbuild": "~0.14.0",
"fast-glob": "^3.2.7",
"fs-extra": "^8.1.0",
"json5": "^2.1.3",
"lodash": "^4.17.15",
"npmlog": "^4.1.2",
"picocolors": "^1.0.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/json5": "^0.0.30",
"@types/lodash": "^4.14.147",
"@types/npmlog": "^4.1.2",
"@types/semver": "^6.2.0",
"@jest/test-result": "27.5.1",
"@jest/types": "27.5.1",
"typescript": "^4"
}
}