-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.96 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
{
"name": "@flipperhitbim/bimio",
"version": "0.1.3",
"description": "CLI for Hitbim Plugin Development",
"main": "bin/bimio",
"repository": {
"type": "git",
"url": "git+https://github.com/HitbimGit/bimio.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bimio:prod": "cross-env NODE_ENV=prod node bin/bimio",
"bimio:dev": "cross-env NODE_ENV=dev DEBUG=* node bin/bimio",
"bimio:local": "cross-env NODE_ENV=local DEBUG=* node bin/bimio",
"build:window": "pkg . --targets node14-win-x64 --output bimio.exe",
"build:mac": "pkg . --targets node14-macos-x64 --output bimio"
},
"bin": {
"bimio": "bin/bimio"
},
"author": "Hitbim",
"contributors": [
{
"name": "HyunHo",
"email": "[email protected]"
}
],
"homepage": "https://developer.hitbim.com",
"bugs": "https://github.com/HitbimGit/bimio/issues",
"license": "ISC",
"keywords": [
"bimio",
"cli",
"plugin",
"component",
"bim",
"hitbim",
"flipper"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"address": "^1.2.2",
"adm-zip": "^0.5.10",
"archiver": "^5.3.1",
"axios": "^0.27.2",
"browserslist": "^4.21.9",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"cli-table": "^0.3.11",
"commander": "^10.0.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"detect-port-alt": "^1.1.6",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"figlet-promised": "^1.0.0",
"find-up": "^5.0.0",
"ip": "^1.1.8",
"is-root": "^2.1.0",
"open": "^8.4.2",
"prompts": "^2.4.2",
"readline": "^1.3.0",
"readline-sync": "^1.4.10",
"serve-favicon": "^2.5.0"
},
"pkg": {
"assets": [
"node_modules/figlet/fonts/Standard.flf",
"node_modules/axios/**/*",
"config/.env.dev",
"config/.env.prod",
"config/.env.local",
"views/**/*",
"assets/**/*"
]
}
}