-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.92 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
{
"name": "@inottn/miniquest",
"version": "0.0.7",
"packageManager": "[email protected]",
"description": "axios API 风格的小程序请求库,适配多个小程序平台",
"author": "inottn<https://github.com/inottn>",
"homepage": "https://github.com/inottn/mini-quest",
"main": "dist/index-cjs.js",
"module": "dist/index-esm.js",
"types": "index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index-esm.js",
"require": "./dist/index-cjs.js"
}
},
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint ./src --ext .js,.ts,.mjs,.cjs",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"prepare": "husky install"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"nano-staged": {
"*.{ts,tsx,js,mjs,less}": "prettier --write",
"*.{ts,tsx,js,mjs}": "eslint --fix"
},
"keywords": [
"miniprogram",
"request",
"axios",
"http",
"miniapp",
"typescript",
"js",
"cache",
"poll",
"retry"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/inottn/mini-quest/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:inottn/mini-quest.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-v8": "^1.1.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.1",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.2.2",
"vitest": "^1.1.3"
},
"dependencies": {
"@inottn/fp-utils": "^0.4.3"
}
}