-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "node-pkware",
"version": "5.0.1",
"description": "nodejs implementation of StormLib's pkware compressor/de-compressor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"bin": {
"explode": "dist/bin/explode.js",
"implode": "dist/bin/implode.js"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./simple": {
"default": "./dist/simple/index.js",
"types": "./dist/simple/index.d.ts"
}
},
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "nodemon --watch src --exec \"npm run build\" --ext ts",
"lint": "xo",
"lint:watch": "nodemon --watch src --exec \"npm run lint\" --ext ts",
"prepublishOnly": "npm run lint && rm -rf dist && rm -f tsconfig.tsbuildinfo && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arx-tools/node-pkware.git"
},
"bugs": {
"url": "https://github.com/arx-tools/node-pkware/issues"
},
"homepage": "https://github.com/arx-tools/node-pkware#readme",
"author": "Lajos Meszaros <[email protected]>",
"license": "MIT",
"dependencies": {
"minimist-lite": "^2.2.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.2",
"eslint-plugin-unused-imports": "^4.1.4",
"tsc-alias": "^1.8.10",
"typescript": "5.6.3",
"xo": "^0.60.0"
},
"keywords": [
"arx-fatalis",
"pkware",
"stormlib",
"implode",
"explode",
"compression",
"decompression",
"blast"
]
}