-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "mgsrc-js",
"version": "2.0.1",
"description": "Decompiler for MGSDRV object.",
"main": "dist/index.js",
"bin": {
"mgsrc-js": "bin/cmd.js"
},
"files": [
"bin",
"README.md",
"package.json",
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "tsc"
},
"author": "Mitsutaka Okazaki",
"license": "ISC",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"typedoc": "^0.23.27",
"typescript": "^4.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/digital-sound-antiques/mgsrc-js"
},
"engines": {
"node": ">=16.0.0"
}
}