-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 3.11 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
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
{
"name": "uni-app-schemas-vscode",
"displayName": "uni-app-schemas",
"version": "0.9.3",
"description": "校验 uni-app 中的 androidPrivacy.json、pages.json 和 manifest.json 格式",
"categories": [
"Other"
],
"keywords": [
"uniapp",
"uni-app",
"schema",
"schemas",
"pages",
"pages.json",
"manifest",
"manifest.json",
"androidPrivacy",
"androidPrivacy.json"
],
"homepage": "https://github.com/uni-helper/uni-app-schamas-vscode#readme",
"bugs": {
"url": "https://github.com/uni-helper/uni-app-schemas-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/uni-helper/uni-app-schemas-vscode"
},
"license": "MIT",
"author": {
"name": "ModyQyW",
"email": "[email protected]",
"url": "https://modyqyw.top"
},
"publisher": "uni-helper",
"type": "module",
"files": [
"*.vsix"
],
"scripts": {
"build": "conc \"npm:build:manifest-schema\" \"npm:build:pages-schema\"",
"build:manifest-schema": "cp node_modules/@uni-helper/manifest-json-schema/schema.json schemas/manifest.json",
"build:pages-schema": "cp node_modules/@uni-helper/pages-json-schema/schema.json schemas/pages.json",
"depupdate": "taze -fw",
"format": "prettier . \"!**/package-lock.json*\" \"!**/yarn.lock\" \"!**/pnpm-lock.yaml\" --ignore-unknown --write --cache --log-level=warn",
"lint": "conc \"npm:lint:eslint\" \"npm:lint:markdownlint\"",
"lint:eslint": "eslint . --fix --cache",
"lint:markdownlint": "markdownlint . --fix --ignore-path=.gitignore",
"prepare": "is-ci || simple-git-hooks",
"publish": "conc \"npm:publish:vscode\" \"npm:publish:openvsx\"",
"publish:openvsx": "ovsx publish",
"publish:vscode": "vsce package && vsce publish",
"release": "npm run build && git add ./schemas/*.json && bumpp --all --x=\"tsx ./scripts/update-readme.ts\"",
"typecheck": "tsc --noEmit"
},
"contributes": {
"jsonValidation": [
{
"fileMatch": "androidPrivacy.json",
"url": "./schemas/androidPrivacy.json"
},
{
"fileMatch": "pages.json",
"url": "./schemas/pages.json"
},
{
"fileMatch": "manifest.json",
"url": "./schemas/manifest.json"
}
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@modyqyw/fabric": "^10.9.5",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.12",
"@uni-helper/manifest-json-schema": "^0.2.6",
"@uni-helper/pages-json-schema": "^0.2.20",
"@vscode/vsce": "^2.26.1",
"bumpp": "^9.4.1",
"concurrently": "^8.2.2",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.40.0",
"ovsx": "^0.9.1",
"prettier": "^3.2.5",
"simple-git": "^3.24.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"tsx": "^4.10.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"vscode": "^1.40.0"
},
"icon": "uni-helper.png",
"sponsor": {
"url": "https://github.com/ModyQyW/sponsors"
}
}