generated from antfu/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "@malolebrin/fetch-api-wrapper",
"type": "module",
"version": "0.2.4",
"private": false,
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@7.29.3",
"description": "use fetch to simplify the code for making HTTP requests taking full advantage of TypeScript's type system",
"author": {
"name": "Malo Lebrin",
"email": "malolebrin@gmail.com"
},
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/MaloLebrin/fetch-api-wrapper#readme",
"repository": {
"type": "git",
"url": "git://github.com/MaloLebrin/fetch-api-wrapper.git"
},
"bugs": "https://github.com/MaloLebrin/fetch-api-wrapper/issues",
"keywords": [
"fetch",
"data",
"rest",
"api"
],
"sideEffects": false,
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist/ && tsc --project tsconfig.production.json",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && rm -rf dist/ && npm publish",
"start": "esno src/main.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vue/reactivity": "^3.2.45"
},
"devDependencies": {
"@antfu/eslint-config": "^0.37.0",
"@antfu/ni": "^0.20.0",
"@antfu/utils": "^0.7.0",
"@types/node": "^18.7.5",
"bumpp": "^9.0.0",
"eslint": "^8.22.0",
"esno": "^0.16.3",
"nanoid": "^5.0.0",
"node-fetch": "^3.2.10",
"pnpm": "^7.9.0",
"rimraf": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^4.0.0",
"vitest": "^0.29.0"
}
}