-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "@qlin/request",
"type": "module",
"version": "0.2.16",
"description": "fetch 封装",
"author": "winixt",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/winixt/request.git"
},
"keywords": [
"fetch",
"request"
],
"main": "dist/request.js",
"module": "dist/request.js",
"files": [
"es",
"lib",
"dist"
],
"scripts": {
"release": "npm run test && npm run build",
"build": "vite build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.3",
"@jest/globals": "^29.5.0",
"@types/jest": "^29.4.2",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.15.3",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
},
"typings": "./dist/index.d.ts",
"packageManager": "[email protected]+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392"
}