-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
43
44
45
46
47
48
49
50
{
"name": "@mpflow/plugin-typescript",
"version": "1.0.0-alpha.2",
"description": "> TODO: description",
"author": "chyizheng <chyizheng@tencent.com>",
"homepage": "",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"preset.js",
"lib",
"template"
],
"repository": {
"type": "git",
"url": "git@github.com:wechat-miniprogram/mpflow.git"
},
"scripts": {
"build": "node ../../scripts/build",
"build-js": "node ../../scripts/build-js",
"build-ts": "node ../../scripts/build-ts"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-typescript": "^7.24.7",
"deepmerge": "^4.3.1",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"tsconfig-paths-webpack-plugin": "^3.5.2"
},
"devDependencies": {
"@mpflow/service": "workspace:*",
"@mpflow/webpack-plugin": "workspace:*",
"@types/wechat-miniprogram": "^2.11.0",
"typescript": "^5.6.2",
"webpack": "^4.47.0"
},
"peerDependencies": {
"@mpflow/plugin-babel": "*",
"@mpflow/service": "*"
}
}