-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "koajax-taro-adapter",
"version": "0.1.1",
"license": "LGPL-3.0-or-later",
"author": "[email protected]",
"contributors": [
],
"description": "A KoAJAX adapter for mini-app HTTP requests",
"keywords": [
"koajax",
"taro",
"request",
"fetch",
"miniapp",
"wechat",
"adapter"
],
"homepage": "https://idea2app.github.io/KoAJAX-Taro-adapter/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/KoAJAX-Taro-adapter.git"
},
"bugs": {
"url": "https://github.com/idea2app/KoAJAX-Taro-adapter/issues"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"koajax": "^3.0.3",
"miniprogram-blob": "^2.0.0",
"taro-fetch-polyfill": "^0.5.0",
"web-streams-polyfill": "^4.0.0"
},
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typedoc": "^0.26.10",
"typedoc-plugin-mdn-links": "^3.3.5",
"typescript": "^5.6.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{md,ts,json,yml}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"build": "rm -rf dist/ docs/ && tsc && typedoc source/",
"prepublishOnly": "npm test && npm run build"
}
}