-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 942 Bytes
/
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
{
"name": "tinytapeout_gds_viewer",
"version": "1.0.0",
"description": "Tiny Tapeout GDS Viewer",
"main": "src/index.js",
"scripts": {
"start": "vite",
"build": "vite build",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinyTapeout/tinytapeout_gds_viewer.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TinyTapeout/tinytapeout_gds_viewer/issues"
},
"homepage": "https://github.com/TinyTapeout/tinytapeout_gds_viewer#readme",
"dependencies": {
"three": "^0.161.0"
},
"devDependencies": {
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"vite": "^3.2.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{js,css}": [
"prettier --write"
]
}
}