-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "vuesax-alpha-extension",
"displayName": "vuesax-alpha-extension",
"description": "a vscode extension of vuesax-alpha",
"version": "0.1.0",
"publisher": "vuesax-alpha",
"icon": "src/assets/vuesax-alpha-logo.png",
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other",
"Snippets"
],
"activationEvents": [
"onLanguage:vue",
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"main": "./out/extension.js",
"contributes": {},
"scripts": {
"lint": "eslint src --ext ts",
"compile": "tsup src/extension.ts --minify --external=vscode --publicDir src/assets --outDir=out",
"watch": "npm run compile -- --watch",
"release": "pnpm compile && vsce package --no-dependencies && vsce publish --no-dependencies",
"changeset": "changeset",
"update-changelog": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuesax-alpha/vuesax-alpha-extension"
},
"bugs": {
"url": "https://github.com/vuesax-alpha/vuesax-alpha-extension/issues"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.30.0",
"eslint": "^8.57.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vuesax-alpha": "0.2.0-beta.78"
}
}