-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "eighty-eighty-js",
"description": "A nice little Intel 8080 emulator for Node.js and Browser!",
"version": "1.0.8",
"author": "Skayo (https://skayo.dev)",
"license": "MIT",
"repository": "Skayo/EightyEighty.js",
"homepage": "https://github.com/Skayo/EightyEighty.js",
"bugs": "https://github.com/Skayo/EightyEighty.js/issues",
"source": "src/index.ts",
"exports": "./dist/eighty-eighty.modern.js",
"main": "./dist/eighty-eighty.js",
"module": "./dist/eighty-eighty.module.js",
"unpkg": "./dist/eighty-eighty.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "microbundle",
"test": "microbundle && node test/run-all.js",
"dev": "microbundle watch --no-compress",
"prepare": "microbundle"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"game",
"emulator",
"player",
"cpu",
"retro",
"runner",
"rom",
"i8080",
"intel-8080"
],
"dependencies": {
"typed-numbers": "^1.0.2"
},
"devDependencies": {
"microbundle": "^0.13.3"
}
}