-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "nescore",
"version": "1.0.0",
"private": true,
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"nes.css": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ringbufferjs": "^2.0.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest src",
"dev": "vite",
"testroms": "npm test src/__tests__",
"benchmark": "npm run build-lib && cp package-lib.json build/lib/package.json && cd scripts/benchmark && node benchmark.js rom.nes",
"build-lib": "cross-env NODE_ENV=production babel src/nes --out-dir build/lib --copy-files"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.js?(x)"
],
"rules": {
"import/no-anonymous-default-export": "off",
"import/no-webpack-loader-syntax": "off"
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead"
],
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.27.2",
"@vitejs/plugin-react": "^4.4.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"vite": "^6.3.5",
"vitest": "^3.1.4"
}
}