-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "node-wechat-pay-sdk",
"version": "0.1.2",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --project tsconfig.development.json --watch",
"build": "tsc --project tsconfig.production.json",
"lint": "eslint",
"test": "node --enable-source-maps --test dist/",
"test:watch": "node --enable-source-maps --test --watch dist/",
"cz": "cz",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [],
"author": "luohuidong",
"repository": {
"type": "git",
"url": "git+https://github.com/luohuidong/node-wechat-pay-sdk.git"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.9.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitepress": "^1.5.0"
}
}