-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
47
48
49
50
51
52
53
54
55
{
"name": "@cloudacy/zippen",
"version": "2.1.4",
"license": "MIT",
"author": "Dominik Kuen <d.kuen@cloudacy.com>",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "tsc",
"test": "vitest ./test/*.spec.ts",
"pretty": "prettier --write '*.{ts,json}' 'src/**/*.ts' 'test/**/*.ts'"
},
"dependencies": {
"crc-32": "^1.2.2"
},
"devDependencies": {
"@types/node": "^20.8.9",
"prettier": "^2.8.8",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"prettier": {
"printWidth": 999,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"proseWrap": "never"
},
"description": "`zippen` is a small and easy to use zip generator. It can be used to pack multiple files / buffers into one .zip file / buffer.",
"main": "./dist/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudacy/zippen.git"
},
"keywords": [
"zip",
"unzip"
],
"bugs": {
"url": "https://github.com/cloudacy/zippen/issues"
},
"homepage": "https://github.com/cloudacy/zippen#readme"
}