-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
47
48
49
50
51
52
53
{
"name": "cps2-utils",
"version": "0.1.5",
"description": "A utility library for working with CPS2 ROMs in the MAME format. Supports decryption, encryption, conversion to Darksoft format, and more!",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"docs": "npx typedoc src/index.ts --excludePrivate"
},
"keywords": [
"cps2",
"mame",
"fightcade",
"roms",
"encryption",
"decryption",
"romhacking"
],
"author": {
"name": "MBD",
"url": "https://github.com/MBDesu"
},
"funding": {
"url": "https://ko-fi.com/mbdesu",
"type": "individual"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MBDesu/cps2-utils.git"
},
"bugs": {
"url": "https://github.com/MBDesu/cps2-utils/issues"
},
"license": "MIT",
"files": [
"/lib"
],
"directories": {
"doc": "./docs"
},
"devDependencies": {
"@tsconfig/node20": "^1.0.2",
"@types/node": "^20.3.2",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"jszip": "^3.10.1"
}
}