-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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": "wokwi-cli-monorepo",
"description": "Wokwi JS/TS monorepo with CLI and client libraries",
"private": true,
"packageManager": "pnpm@10.17.1",
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write packages scripts test",
"format:check": "prettier --check packages scripts test",
"test": "pnpm run test:vitest && pnpm run test:embed:playwright && pnpm run test:cli:integration",
"test:vitest": "pnpm run lint && vitest --run",
"test:embed:playwright": "playwright test test/wokwi-embed",
"test:embed:playwright:ui": "playwright test test/wokwi-embed --ui",
"test:cli:integration": "pnpm exec tsx scripts/test-cli-integration.ts",
"test:chip:integration": "pnpm exec tsx scripts/test-chip-integration.ts",
"cli": "tsx packages/cli/src/main.ts",
"prepare": "husky install"
},
"author": "Uri Shaked",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wokwi/wokwi-cli"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.48.0",
"esbuild": "^0.25.2",
"eslint": "^9.39.1",
"husky": "^8.0.0",
"jiti": "^2.6.1",
"lint-staged": "^15.4.3",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"rimraf": "^5.0.0",
"shx": "^0.4.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^3.0.5"
},
"lint-staged": {
"*.{js,ts,mjs}": [
"prettier --write",
"eslint --fix"
]
}
}