-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "uni-cloud-snippets-vscode",
"displayName": "uni-cloud-snippets",
"version": "0.3.0",
"description": "uni-cloud 基本能力代码片段",
"categories": [
"Snippets"
],
"keywords": [
"uniapp",
"uni-app",
"unicloud",
"uni-cloud",
"snippet",
"snippets"
],
"homepage": "https://github.com/uni-helper/uni-cloud-snippets-vscode#readme",
"bugs": {
"url": "https://github.com/uni-helper/uni-cloud-snippets-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/uni-helper/uni-cloud-snippets-vscode"
},
"license": "MIT",
"author": {
"name": "ModyQyW",
"email": "[email protected]",
"url": "https://modyqyw.github.io"
},
"publisher": "uni-helper",
"type": "module",
"files": [
"*.vsix"
],
"scripts": {
"check:deps": "taze",
"check:types": "tsc --noEmit",
"lint": "conc \"npm:lint:eslint\" \"npm:lint:markdownlint\"",
"lint:eslint": "eslint . --fix --cache --ignore-path=.gitignore",
"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 lint && npm run check:types && bumpp --all -x=\"tsx ./scripts/update-readme.ts\""
},
"contributes": {
"snippets": [
{
"language": "vue-html",
"path": "./snippets/vue-html.json"
},
{
"language": "vue",
"path": "./snippets/vue-html.json"
},
{
"language": "html",
"path": "./snippets/vue-html.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "javascriptreact",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/javascript.json"
},
{
"language": "typescriptreact",
"path": "./snippets/javascript.json"
},
{
"language": "vue",
"path": "./snippets/javascript.json"
}
]
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@commitlint/prompt": "^18.4.1",
"@modyqyw/fabric": "^9.0.6",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vscode/vsce": "^2.22.0",
"bumpp": "^9.2.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.1.0",
"markdownlint-cli": "^0.37.0",
"ovsx": "^0.8.3",
"prettier": "^3.1.0",
"simple-git": "^3.20.0",
"simple-git-hooks": "^2.9.0",
"taze": "^0.12.0",
"tsx": "^4.1.2",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"vscode": "^1.40.0"
},
"icon": "uni-helper.png",
"sponsor": {
"url": "https://github.com/ModyQyW/sponsors"
}
}