-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "wechat-api-next",
"version": "3.4.1",
"author": "lblblong <1162275271@qq.com>",
"homepage": "https://github.com/lblblong/wechat-api-next",
"description": "wechat-api-next 是一个类型提示友好,响应友好的微信服务端 API Node.js 封装。",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/wechat-api-next.esm.js",
"scripts": {
"start": "tsdx watch --target node",
"build": "tsdx build --target node",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build --target node",
"prepublishOnly": "tsdx build --target node",
"size": "size-limit",
"doc:serve": "dumi dev",
"doc:build": "dumi build",
"analyze": "size-limit --why"
},
"dependencies": {
"@libeilong/request": "^0.7.3",
"dayjs": "^1.10.7"
},
"files": [
"dist",
"package.json"
],
"size-limit": [
{
"path": "dist/wechat-api-next.cjs.production.min.js",
"limit": "40 KB"
},
{
"path": "dist/wechat-api-next.esm.js",
"limit": "40 KB"
}
],
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/prompt-cli": "^12.1.4",
"@size-limit/preset-small-lib": "^4.11.0",
"@types/node": "^14.14.35",
"commitizen": "^4.2.4",
"cz-customizable": "^6.3.0",
"dumi": "^1.1.16",
"dumi-theme-default": "^1.1.8",
"husky": "^6.0.0",
"regenerator-runtime": "^0.13.7",
"size-limit": "^4.11.0",
"ts-node": "^10.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"jest": {
"testEnvironment": "node"
}
}