-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@zidsa/themes-cli",
"version": "1.0.1",
"description": "A CLI to process zid theme folder",
"main": "bin/zid-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/zidsa/zid-theme-npm.git"
},
"bin": {
"themes-cli": "bin/zid-theme"
},
"files": [
"bin/zid-theme",
"dist/"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Ehab Alamawi",
"email": "ehab.alamawi@zid.sa"
},
"contributors": [
{
"name": "Juan Martinez",
"email": "juan.martinez@zid.sa"
},
{
"name": "Aissa BOUGUERN",
"email": "a.bouguern@zid.sa"
},
{
"name": "Abdulaziz Homaily",
"email": "homaily@zid.sa"
}
],
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"release": "dotenv release-it --",
"pkg": "pkg -t linux,macos,win dist/zid-theme.js --out-path bin",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"zid",
"zid-theme"
],
"dependencies": {
"adm-zip": "^0.5.14",
"archiver": "^7.0.1",
"axios": "^1.7.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"form-data": "^4.0.0",
"open": "^10.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/archiver": "^6.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.1.0",
"dotenv-cli": "^7.4.2",
"original-fs": "^1.2.0",
"release-it": "^17.6.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"release-it": {
"hooks": {
"before:init": [
"git pull"
]
},
"npm": {
"publish": true
},
"publishConfig": {
"access": "public"
}
}
}