-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "@happy-ts/fetch-t",
"description": "Abortable fetch wrapper with the ability to specify the return type.",
"author": "[email protected]",
"license": "GPL-3.0",
"version": "1.3.2",
"type": "module",
"source": "src/mod.ts",
"main": "dist/main.cjs",
"module": "dist/main.mjs",
"types": "dist/types.d.ts",
"files": [
"LICENSE",
"README.md",
"README.cn.md",
"package.json",
"docs",
"src",
"dist"
],
"sideEffects": false,
"scripts": {
"check": "pnpm exec tsc --noEmit",
"lint": "pnpm exec eslint .",
"prebuild": "pnpm dlx rimraf dist && pnpm run check && pnpm run lint",
"build": "pnpm exec rollup --config rollup.config.mjs",
"pretest": "pnpm dlx rimraf coverage",
"test": "deno test -A --coverage && deno coverage coverage && deno coverage coverage --lcov --output=coverage/cov_profile.lcov",
"pretest:html": "pnpm run pretest",
"test:html": "deno test -A --coverage && deno coverage coverage && deno coverage coverage --html",
"predocs": "pnpm dlx rimraf docs",
"docs": "pnpm exec typedoc",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JiangJie/fetch-t.git"
},
"keywords": [
"fetch",
"abort",
"cancel",
"responseType"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.0",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"happy-rusty": "^1.5.0",
"tiny-invariant": "^1.3.3"
},
"packageManager": "[email protected]"
}