-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.02 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.02 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "opniz-cli",
"version": "0.5.3",
"description": "",
"keywords": [
"opniz",
"m5stack",
"m5atom",
"esp32",
"arduino-cli"
],
"license": "MIT",
"homepage": "https://github.com/miso-develop/opniz-cli",
"repository": {
"type": "git",
"url": "https://github.com/miso-develop/opniz-cli"
},
"bugs": "https://github.com/miso-develop/opniz-cli/issues",
"author": "Miso Tanaka <miso.develop@gmail.com>",
"main": "dist/index.js",
"bin": {
"opniz": "dist/index.js"
},
"engines": {
"node": ">=16.x"
},
"files": [
"dist",
"template"
],
"private": false,
"scripts": {
"postinstall": "node ./dist/setup.js",
"node": "node dist",
"n": "npm run node",
"nodemon": "nodemon --watch dist dist/index.js",
"nm": "npm run nodemon",
"prestart": "npm run build",
"start": "npm run node",
"s": "npm start",
"clean": "npx rimraf dist",
"c": "npm run clean",
"prebuild:prod": "npm run clean",
"prebuild:dev": "npm run clean",
"prebuild": "npm run clean",
"build:prod": "npx tsc --declaration false --declarationMap false --sourceMap false --newLine lf",
"build:dev": "npx tsc",
"build": "npm run build:dev",
"bp": "npm run build:prod",
"bd": "npm run build:dev",
"b": "npm run build",
"watch": "npm run build:dev -- --watch",
"w": "npm run watch",
"lint": "npx eslint {src,tests,examples}/**/*.{ts,js}",
"l": "npm run lint",
"lint:fix": "npx eslint --fix {src,tests,examples}/**/*.{ts,js}",
"lf": "npm run lint:fix",
"update": "npm i || npm run build:prod && npm run postinstall",
"u": "npm run update",
"": ""
},
"dependencies": {
"adm-zip": "^0.5.10",
"commander": "^10.0.0",
"inquirer": "^8.2.5",
"node-wifi": "^2.0.16",
"ora": "^5.4.1",
"tar": "^6.1.13",
"zx": "^4.3.0"
},
"devDependencies": {
"@types/eslint": "^8.21.1",
"@types/inquirer": "^8.2.6",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
}
}