-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 842 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
{
"name": "@codit-run/weixin-openapi",
"description": "Weixin OpenAPI",
"repository": "codit-run/weixin-openapi",
"version": "0.1.6",
"author": "codit.run",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"weixin",
"wechat",
"openapi",
"open platform",
"mini program",
"mini app"
],
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint \"{src,test}/**/*.ts\"",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}