-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.16 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
{
"name": "prep-fetch",
"version": "0.1.0",
"description": "Prepare your Fetch Response to receive Per Resource Events notifications",
"keywords": [
"per resource events",
"events",
"accept-events",
"notifications",
"subscription",
"prep",
"client",
"fetch",
"multipart",
"response"
],
"author": "Rahul Gupta",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/CxRes/prep-fetch.git"
},
"type": "module",
"main": "src/index.js",
"exports": "./src/index.js",
"browser": "dist/browser.min.js",
"unpkg": "dist/browser.min.js",
"dependencies": {
"multipart-fetch": "^0.1.0",
"structured-headers": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"cspell": "^8.9.1",
"dedent": "^1.5.3",
"esbuild": "0.21.5",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.4.0",
"headright": "^0.1.1",
"husky": "^9.0.11",
"knip": "^5.23.2",
"lint-staged": "^15.2.7",
"parse-gitignore": "^2.0.0",
"prettier": "^3.3.1",
"vitest": "^1.6.0"
},
"engines": {
"node": ">20.6"
},
"scripts": {
"build": "node scripts/build.js",
"format": "prettier * --check",
"header": "hr --dry --verbose \"**\"",
"header:modify": "hr --verbose \"**\"",
"lint": "pnpm run --reporter=append-only --aggregate-output \"/(^lint:.*|format)/\"",
"lint:code": "eslint .",
"lint:header": "hr --dry \"**\"",
"lint:knip": "knip",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell --dot \"**\"",
"prepare": "node .husky/install.js",
"prepublishOnly": "pnpm run lint && pnpm run test && pnpm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:ui": "vitest --ui"
}
}