-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.84 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@transcend-io/conflux",
"version": "6.1.3",
"type": "module",
"description": "Build zip files out of readable streams in the browser",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"scripts": {
"build": "tshy",
"test": "web-test-runner --files test/**/*.test.ts --node-resolve --playwright --coverage --browsers chromium firefox webkit",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:prettier": "prettier --check . --log-level warn",
"lint:eslint": "eslint .",
"lint:types": "tsc --build",
"lint:knip": "knip",
"format": "prettier --write . --log-level warn && doctoc README.md --maxlevel 3",
"rebuild-fixtures": "tsx scripts/rebuild-fixtures.ts",
"prepublishOnly": "pnpm lint && pnpm run build"
},
"files": [
"dist/**/*",
"src/**/*"
],
"dependencies": {
"pako": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@tsconfig/strictest": "^2.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.17.1",
"@types/pako": "^2.0.3",
"@web/dev-server-esbuild": "^1.0.4",
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.1",
"doctoc": "^2.2.1",
"eslint": "^9.32.0",
"eslint-plugin-unicorn": "^60.0.0",
"knip": "^5.62.0",
"playwright": "^1.55.1",
"prettier": "^3.6.2",
"tshy": "^3.3.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0"
},
"packageManager": "pnpm@10.13.1+sha256.0f9ed48d808996ae007835fb5c4641cf9a300def2eddc9e957d9bbe4768c5f28",
"tshy": {
"project": "tsconfig.web.json",
"selfLink": false,
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"license": "MIT",
"author": "@transcend-io",
"bugs": {
"url": "https://github.com/transcend-io/conflux/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcend-io/conflux.git"
},
"keywords": [
"zip",
"browser",
"streams",
"readable",
"files",
"whatwg"
],
"contributors": [
{
"name": "Jimmy Wärting",
"email": "jimmy@warting.se",
"url": "https://github.com/jimmywarting"
},
{
"name": "Eli Grey",
"email": "eli@transcend.io",
"url": "https://github.com/eligrey"
},
{
"name": "Ben Brook",
"email": "ben@transcend.io",
"url": "https://github.com/bencmbrook"
}
],
"homepage": "https://github.com/transcend-io/conflux#readme"
}