-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "xschem-viewer",
"version": "1.0.0",
"description": "Online viewer of Xschem schematic files ",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint --ext .ts,.tsx .",
"build": "vite build",
"build:parser": "peggy --plugin ts-pegjs -o src/parser/xschem-parser.ts src/parser/xschem-parser.peg",
"format:check": "prettier --check **/*.{ts,js,css,tsx} !dist/** !node_modules/**",
"start": "vite",
"test": "vitest --run",
"test:watch": "vitest",
"prepare": "husky"
},
"keywords": [
"xschem",
"asic",
"vlsi",
"schematic",
"viewer"
],
"author": "Uri Shaked",
"license": "Apache-2.0",
"dependencies": {
"panzoom": "^9.4.3",
"solid-js": "^1.8.16"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"peggy": "^3.0.2",
"prettier": "^3.2.5",
"ts-pegjs": "^4.2.1",
"typescript": "~5.3.0",
"vite": "^5.1.5",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.3.1"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{js,css}": [
"prettier --write"
]
},
"engines": {
"node": ">=20"
}
}