-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.05 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
{
"name": "vscode-webc",
"displayName": "WebC for VS Code",
"description": "Language support for the WebC template language",
"publisher": "fynn",
"version": "0.4.0",
"preview": true,
"license": "MIT",
"categories": [
"Programming Languages"
],
"keywords": [
"eleventy",
"webc"
],
"homepage": "https://github.com/mvsde/vscode-webc/",
"bugs": {
"url": "https://github.com/mvsde/vscode-webc/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mvsde/vscode-webc.git"
},
"qna": "https://github.com/mvsde/vscode-webc/discussions",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#0f181b",
"theme": "dark"
},
"engines": {
"vscode": "^1.91.0",
"node": ">=22.4.0"
},
"activationEvents": [
"workspaceContains:**/*.webc"
],
"main": "./dist/extension.js",
"contributes": {
"configurationDefaults": {
"files.associations": {
"*.webc": "html"
}
},
"html": {
"customData": [
"./dist/data/at.html-data.json",
"./dist/data/webc.html-data.json"
]
}
},
"scripts": {
"watch": "run-p watch:*",
"watch:data": "node --watch-path=./src/data --watch-preserve-output data.mjs",
"watch:extension": "node esbuild.mjs --watch",
"build": "run-s build:*",
"build:data": "node data.mjs",
"build:extension": "node esbuild.mjs --production",
"check": "run-s check:*",
"check:lint": "eslint",
"check:types": "tsc --noEmit",
"check:format": "prettier --check .",
"format": "prettier --write .",
"version": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file && git add CHANGELOG.md",
"vscode:prepublish": "run-s check build"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.11",
"@types/vscode": "^1.91.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.23.0",
"eslint": "^9.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.45",
"yaml": "^2.4.5"
}
}