-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.05 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
41
42
43
44
45
46
{
"name": "node-zip-stream",
"version": "1.1.1",
"license": "MIT",
"type": "module",
"exports": {
"./read": {
"types": "./dist/read.d.mts",
"import": "./dist/read.mjs"
},
"./write": {
"types": "./dist/write.d.mts",
"import": "./dist/write.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-ecosystem/node-zip-stream.git"
},
"homepage": "https://github.com/node-ecosystem/node-zip-stream#readme",
"bugs": {
"url": "https://github.com/node-ecosystem/node-zip-stream/issues"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "tsdown",
"prepublishOnly": "yarn build",
"od": "yarn outdated"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@yarnpkg/sdks": "^3.3.0",
"eslint": "^10.7.0",
"eslint-plugin-unicorn": "^72.0.0",
"tsdown": "^0.22.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
},
"engines": {
"node": "^20.15.0 || >=22.2.0"
},
"packageManager": "yarn@4.17.1"
}