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
|
{
"name": "@beautiful-bubble/wave",
"version": "0.1.0",
"description": "The HTTP client.",
"keywords": [
"wechat-miniprogram",
"http-client"
],
"homepage": "https://github.com/Beautiful-Bubble/http-client#readme",
"bugs": {
"url": "https://github.com/Beautiful-Bubble/http-client/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beautiful-Bubble/http-client.git"
},
"license": "MIT",
"author": "Zhineng Li",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"test:types": "tsd --files tests/**/*.test-d.ts",
"test:all": "npm run test && npm run test:types",
"format": "prettier --write --cache .",
"format:check": "prettier --check .",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test:all"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.0.5",
"miniprogram-api-typings": "^4.1.0",
"prettier": "3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsd": "^0.32.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}
|