-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "@tmustier/pi-nes",
"version": "0.2.41",
"description": "NES emulator extension for pi",
"keywords": [
"pi-package",
"pi",
"nes",
"emulator"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tmustier/pi-nes.git"
},
"scripts": {
"test": "node --import tsx --test tests/paths.test.ts tests/roms.test.ts tests/saves.test.ts tests/config.test.ts tests/input-map.test.ts",
"test:unit": "node --import tsx --test tests/paths.test.ts tests/roms.test.ts tests/saves.test.ts tests/config.test.ts tests/input-map.test.ts",
"test:core": "node --import tsx --test tests/core-smoke.test.ts",
"test:regression": "node --import tsx --test tests/regression.test.ts"
},
"dependencies": {
"pngjs": "^7.0.0"
},
"devDependencies": {
"tsx": "^4.19.0",
"typescript": "^5.5.0"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*"
},
"pi": {
"extensions": [
"./extensions/nes"
],
"image": "https://raw.githubusercontent.com/tmustier/pi-nes/main/assets/demo.gif"
}
}