-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.05 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@skit/wxjssdk-promisify",
"title": "wx-jssdk",
"description": "为微信 JS-SDK 提供 TypeScript 支持,同时将其基于回调函数的异步 API 转化为 Promise 形式。",
"keywords": [
"微信",
"公众号",
"订阅号",
"服务号",
"公众平台",
"微信公众号",
"微信订阅号",
"微信服务号",
"微信公众平台",
"JSSDK",
"JS-SDK",
"微信JSSDK",
"微信JS-SDK",
"Wechat",
"Weixin",
"MicroMessager",
"MediaPlatform",
"Wechat-MediaPlatform",
"Weixin-MediaPlatform",
"Wechat-JSSDK",
"Weixin-JSSDK",
"wxmp",
"wxjssdk",
"promise",
"promisify"
],
"version": "1.6.0",
"main": "dist/index.js",
"author": "Fu Diwei",
"repository": {
"type": "git",
"url": "https://github.com/fudiwei/wxjssdk-promisify.git"
},
"license": "MIT",
"scripts": {
"clean": "gulp clean",
"eslint": "gulp eslint",
"build": "gulp dist --sourceMap=no",
"deploy": "npm run build && npm publish --access=public"
},
"typings": "types/index.d.ts",
"files": [
"src/*",
"dist/*",
"types/*"
],
"engines": {
"node": ">=12",
"npm": ">=7",
"pnpm": ">=6"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/preset-env": "^7.16.11",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-rimraf": "^1.0.0",
"gulp-strip-debug": "^4.0.0",
"gulp-uglify": "^3.0.2",
"prettier": "2.6.1",
"typescript": "~4.6.0"
},
"peerDependencies": {
"weixin-js-sdk": "~1.6.0"
}
}