-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "wokwi-cli",
"version": "0.14.5",
"description": "Wokwi Simulator CLI (for CI and local development)",
"main": "index.js",
"type": "module",
"scripts": {
"build": "node tools/build.js",
"package": "npm run build && pkg --public -o dist/bin/wokwi-cli -t node20-linuxstatic-arm64,node20-linuxstatic-x64,node20-macos-arm64,node20-macos-x64,node20-win-x64 dist/cli.cjs",
"start": "tsx src/main.ts",
"lint": "eslint ./src",
"test": "npm run lint && vitest --run",
"test:watch": "vitest --watch",
"prepare": "husky install"
},
"keywords": [
"esp32",
"stm32",
"iot",
"embedded",
"testing",
"ci",
"wokwi",
"esp-idf",
"simulator",
"arduino",
"platformio",
"zephyr",
"micropython",
"circuitpython"
],
"author": "Uri Shaked",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wokwi/wokwi-cli"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@iarna/toml": "2.2.5",
"arg": "^5.0.2",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"ws": "^8.13.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@yao-pkg/pkg": "^5.11.5",
"esbuild": "^0.18.17",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.0",
"tsx": "^4.6.1",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint"
]
}
}