-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 6.73 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 6.73 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "uview-pro-demo",
"version": "0.5.11",
"scripts": {
"dev": "uni",
"dev:custom": "uni -p",
"dev:h5": "uni",
"dev:h5:ssr": "uni --ssr",
"dev:app": "uni -p app",
"dev:app-android": "uni -p app-android",
"dev:app-ios": "uni -p app-ios",
"dev:mp-alipay": "uni -p mp-alipay",
"dev:mp-baidu": "uni -p mp-baidu",
"dev:mp-jd": "uni -p mp-jd",
"dev:mp-kuaishou": "uni -p mp-kuaishou",
"dev:mp-lark": "uni -p mp-lark",
"dev:mp-qq": "uni -p mp-qq",
"dev:mp-toutiao": "uni -p mp-toutiao",
"dev:mp-weixin": "uni -p mp-weixin",
"dev:mp-xhs": "uni -p mp-xhs",
"dev:mp-dingtalk": "uni -p mp-dingtalk",
"dev:quickapp-webview": "uni -p quickapp-webview",
"dev:quickapp-webview-huawei": "uni -p quickapp-webview-huawei",
"dev:quickapp-webview-union": "uni -p quickapp-webview-union",
"build": "node scripts/update-date.js && uni build",
"postbuild": "node scripts/fix-empty-css.js",
"build:custom": "node scripts/update-date.js && uni build -p",
"build:h5": "node scripts/update-date.js && uni build",
"build:h5:ssr": "uni build --ssr",
"build:app": "uni build -p app",
"build:app-android": "uni build -p app-android",
"build:app-ios": "uni build -p app-ios",
"build:mp-alipay": "uni build -p mp-alipay",
"build:mp-baidu": "uni build -p mp-baidu",
"build:mp-jd": "uni build -p mp-jd",
"build:mp-kuaishou": "uni build -p mp-kuaishou",
"build:mp-lark": "uni build -p mp-lark",
"build:mp-qq": "uni build -p mp-qq",
"build:mp-toutiao": "uni build -p mp-toutiao",
"build:mp-weixin": "node scripts/update-date.js && uni build -p mp-weixin",
"build:mp-xhs": "uni build -p mp-xhs",
"build:mp-dingtalk": "uni build -p mp-dingtalk",
"build:quickapp-webview": "uni build -p quickapp-webview",
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
"type-check": "vue-tsc --noEmit",
"commit": "git-cz",
"commit:lint": "commitlint --edit",
"changelog": "node scripts/generate-changelog.js",
"changelog:first": "node scripts/generate-changelog.js",
"changelog:emoji": "node scripts/generate-changelog.js --emoji",
"changelog:plain": "node scripts/generate-changelog.js --plain",
"changelog:current": "node scripts/generate-changelog.js --emoji --current",
"changelog:current:plain": "node scripts/generate-changelog.js --plain --current",
"changelog:current:no-unreleased": "node scripts/generate-changelog.js --emoji --current --no-unreleased",
"changelog:current:plain:no-unreleased": "node scripts/generate-changelog.js --plain --current --no-unreleased",
"changelog:last": "node scripts/generate-changelog.js --emoji --last",
"changelog:last:plain": "node scripts/generate-changelog.js --plain --last",
"changelog:all": "node scripts/generate-changelog.js --emoji --all",
"changelog:all:plain": "node scripts/generate-changelog.js --plain --all",
"release": "node scripts/release.js",
"release:changelog": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs: update changelog' && git push",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"release:patch:win": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1 patch",
"release:minor:win": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1 minor",
"release:major:win": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1 major",
"release:patch:bat": "scripts\\release.bat patch",
"release:minor:bat": "scripts\\release.bat minor",
"release:major:bat": "scripts\\release.bat major",
"publish": "cd src/uni_modules/uview-pro && npm publish --access public && cd ../../..",
"prepare": "husky",
"format": "prettier --write . --ignore-path .prettierignore",
"test:npm": "node scripts/test-npm-package.js",
"test:npm:cleanup": "node scripts/test-npm-cleanup.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"dependencies": {
"@dcloudio/uni-app": "3.0.0-4080720251210001",
"@dcloudio/uni-app-harmony": "3.0.0-4080720251210001",
"@dcloudio/uni-app-plus": "3.0.0-4080720251210001",
"@dcloudio/uni-components": "3.0.0-4080720251210001",
"@dcloudio/uni-h5": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-alipay": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-baidu": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-harmony": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-jd": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-kuaishou": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-lark": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-qq": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-toutiao": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-weixin": "3.0.0-4080720251210001",
"@dcloudio/uni-mp-xhs": "3.0.0-4080720251210001",
"@dcloudio/uni-quickapp-webview": "3.0.0-4080720251210001",
"vue": "^3.4.21",
"vue-i18n": "9.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@dcloudio/types": "^3.4.8",
"@dcloudio/uni-automator": "3.0.0-4080720251210001",
"@dcloudio/uni-cli-shared": "3.0.0-4080720251210001",
"@dcloudio/uni-stacktracey": "3.0.0-4080720251210001",
"@dcloudio/vite-plugin-uni": "3.0.0-4080720251210001",
"@uni-ku/root": "^1.4.1",
"@vue/runtime-core": "3.4.21",
"@vue/tsconfig": "^0.8.1",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"sass": "1.63.2",
"sass-loader": "10.4.1",
"typescript": "^5.5.4",
"vite": "5.2.8",
"vue-tsc": "^3.0.5"
},
"lint-staged": {
"*.{js,ts,vue,scss,md,json}": "prettier --write --ignore-path .prettierignore"
},
"uni-app": {
"scripts": {
"mp-dingtalk": {
"title": "钉钉小程序",
"env": {
"UNI_PLATFORM": "mp-alipay"
},
"define": {
"MP-DINGTALK": true
}
}
}
},
"volta": {
"node": "20.13.1"
},
"buildDate": "2026-01-23",
"releaseDate": "2026-03-02"
}