-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
41 lines (41 loc) · 967 Bytes
/
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
{
"name": "node-easywechat",
"version": "3.7.6",
"description": "EasyWechat SDK for Node.js (NOT OFFICIAL)",
"main": "dist/index.js",
"scripts": {
"release": "npx package-release",
"build": "rm -rf dist && npx tsc && cp -r src/Types dist/",
"test": "npx mocha ./test/ --recursive --extension .test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:hpyer/node-easywechat.git"
},
"keywords": [
"weixin",
"wechat"
],
"author": "Hpyer",
"license": "MIT",
"engines": {
"node": ">=15.6.0"
},
"devDependencies": {
"@types/node": "^20.14.15",
"axios-mock-adapter": "^1.22.0",
"mocha": "^9.2.2",
"package-release": "^1.0.3",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.7.4",
"axios-retry": "^4.5.0",
"form-data": "^4.0.0",
"merge": "^2.1.1",
"node-socialite": "^1.4.1",
"qs": "^6.13.0",
"raw-body": "^2.5.2",
"xml2js": "^0.6.2"
}
}