-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "@caidix/taro-loader-component-inject",
"version": "0.1.0",
"description": "基于taro3+react+webpack5注入小程序组件到全局/指定页面",
"main": "index.js",
"scripts": {
"build": "tsdx build --format cjs",
"dev": "tsdx watch --format cjs",
"test": "tsdx test",
"version:pre": "pnpm run build && echo '发布预发布beta版本' && standard-version --prerelease",
"version:patch": "pnpm run build && echo '发布补丁版本' && standard-version --release-as patch",
"version:minor": "pnpm run build && echo '发布小版本' && standard-version --release-as minor",
"version:major": "pnpm run build && echo '发布主版本' && standard-version --release-as major",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com:caidix/taro-inject-components.git"
},
"files": [
"index.js",
"dist"
],
"keywords": [
"webpack",
"loader",
"typescript",
"react",
"webpack",
"taro3",
"taro"
],
"author": "caidix",
"license": "MIT",
"homepage": "https://github.com/caidix/taro-inject-components#readme",
"dependencies": {
"@babel/core": "^7.8.0",
"@babel/generator": "7.23.0",
"@babel/parser": "7.23.0",
"@babel/template": "^7.22.15",
"@babel/traverse": "7.23.0",
"@babel/types": "7.23.0",
"loader-utils": "1.4.2",
"minimatch": "^9.0.3",
"schema-utils": "^4.2.0"
},
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__parser": "^7.1.1",
"@types/babel__traverse": "^7.20.5",
"@types/node": "^20.11.13",
"standard-version": "^9.5.0",
"tsdx": "^0.14.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@tarojs/helper": ">=3.6.0",
"webpack": ">=5.50.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}