-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.21 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "nesemu",
"version": "0.9.0",
"description": "NES Emulator",
"main": "./src/main.ts",
"scripts": {
"prepare": "simple-git-hooks",
"start": "npm run default",
"default": "npx vite --port=3000",
"test": "npm run lint",
"lint": "npx tsc && eslint --ext .ts src/",
"lint:fix": "eslint --fix src/**/*.ts",
"release": "npx vite build",
"clean": "rm -rf public release",
"deploy": "npm run reset-ghpages && npm run update-ghpages && npm run push-ghpages",
"reset-ghpages": "cd gh-pages && git reset --hard && git checkout gh-pages && cd ..",
"update-ghpages": "npm run release && cp -r release/* gh-pages/",
"push-ghpages": "cd gh-pages && git commit -a --amend -m 'Deploy' && git push -f && cd .."
},
"author": "tyfkda",
"repository": {
"type": "git",
"url": "https://github.com/tyfkda/nesemu"
},
"engines": {
"node": ">=16.0"
},
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"sideEffects": [
"./src/main.ts",
"./src/dc_remove_worker.ts",
"./src/dmc_channel_worker.ts",
"./src/noise_channel_worker.ts",
"./src/util/polyfill.ts"
],
"simple-git-hooks": {
"pre-push": "npm test"
},
"devDependencies": {
"@types/escape-html": "^1.0.4",
"@types/fscreen": "^1.0.4",
"@types/jest": "^30.0.0",
"@types/md5": "^2.3.6",
"@types/node": "^25.2.3",
"@types/node-wav": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"commander": "^14.0.3",
"eslint": "^9.33.0",
"html-minifier-next": "^5.1.0",
"node-wav": "^0.0.2",
"sass": "^1.97.3",
"simple-git-hooks": "^2.13.1",
"svg-inline-loader": "^0.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-html-minifier": "^1.0.5"
},
"dependencies": {
"core-js": "^3.48.0",
"escape-html": "^1.0.3",
"fflate": "^0.8.2",
"fscreen": "^1.2.0",
"md5": "^2.3.0",
"stats-js": "^1.0.1",
"stream": "^0.0.3"
}
}