-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "libwx",
"version": "0.8.4",
"description": "Weixin sdk for node",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"eslint": "eslint --ext .ts,.tsx ./",
"eslint:fix": "eslint --ext .tsx,.ts --fix ./",
"prettier": "prettier -l * src/**",
"prettier:fix": "prettier --write -l * src/**",
"fix": "yarn prettier:fix",
"tsc": "tsc",
"tsc-watch": "tsc -w"
},
"repository": "https://github.com/maichong/libwx",
"keywords": [
"weixin",
"wechat",
"jssdk"
],
"author": "Liang <[email protected]> (https://github.com/liangxingchen)",
"license": "MIT",
"dependencies": {
"akita": "^1.0.4",
"hasha": "^5.2.2",
"lodash": "^4.17.21",
"string-random": "^0.1.3"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/lodash": "^4.14.191",
"@types/node": "12.12.25",
"@types/qs": "^6.9.7",
"@types/sha1": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.34.0",
"eslint-config-alloy": "^4.9.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}