-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "warcio",
"version": "2.4.3",
"keywords": [
"WARC",
"web archiving"
],
"homepage": "https://github.com/webrecorder/warcio.js#readme",
"bugs": {
"url": "https://github.com/webrecorder/warcio.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/webrecorder/warcio.js.git"
},
"license": "Apache-2.0",
"author": "Webrecorder Software, Ilya Kreymer",
"sideEffects": [
"./src/polyfills.cjs"
],
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./utils": {
"require": "./dist/utils.cjs",
"default": "./dist/utils.js"
},
"./node": {
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"bin": "./dist/cli.js",
"files": [
"/src",
"/dist"
],
"scripts": {
"build": "tsup && tsup --define.browser='true'",
"check": "tsc --noEmit",
"format": "prettier --write src test",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest --collectCoverage",
"prepare": "node scripts/build-if-not-git-repo.js"
},
"dependencies": {
"@types/pako": "^1.0.7",
"@types/stream-buffers": "^3.0.7",
"base32-encode": "^2.0.0",
"hash-wasm": "^4.9.0",
"pako": "^1.0.11",
"tempy": "^3.1.0",
"uuid-random": "^1.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"cross-fetch": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^1.5.0",
"jest": "^29.6.2",
"jest-expect-message": "^1.1.3",
"prettier": "^3.3.3",
"stream-buffers": "^3.0.2",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}