-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "ecforce-theme-cli",
"version": "2.0.0",
"description": "CLI tools for ecforce theme development",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"build": "npm run clean && tsc && chmod +x dist/cli.js",
"prepublishOnly": "npm run build"
},
"bin": {
"ecforce-theme": "dist/cli.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/piouc/ecforce-theme-cli",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/axios-curlirize": "^1.3.5",
"@types/node": "^25.5.0",
"@types/tough-cookie": "^4.0.5",
"@types/unzip-stream": "^0.3.4",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"archiver": "^7.0.1",
"axios": "^1.13.6",
"axios-cookiejar-support": "^6.0.5",
"axios-logger": "^2.8.1",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"html-entities": "^2.6.0",
"joi": "^18.1.1",
"open": "^11.0.0",
"p-debounce": "^5.1.0",
"p-limit": "^7.3.0",
"package-directory": "^8.2.0",
"puppeteer": "^24.40.0",
"readdirp": "^5.0.0",
"tough-cookie": "^6.0.1",
"unzip-stream": "^0.3.4",
"ws": "^8.20.0"
}
}