This repository was archived by the owner on Apr 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.09 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.09 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
{
"name": "vscode-webc",
"displayName": "WebC for VS Code",
"description": "Language support for the WebC template language",
"publisher": "fynn",
"version": "0.5.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": "post@fynn.be"
},
"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.102.0",
"node": ">=22.15"
},
"type": "module",
"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.js",
"watch:extension": "node esbuild.js --watch",
"build": "run-s build:*",
"build:data": "node data.js",
"build:extension": "node esbuild.js --production",
"check": "run-s check:*",
"check:lint": "eslint",
"check:types": "tsc --noEmit",
"check:format": "prettier --experimental-cli --check .",
"format": "prettier --experimental-cli --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.31.0",
"@types/node": "^24.0.14",
"@types/vscode": "^1.102.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.25.6",
"eslint": "^9.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"yaml": "^2.8.0"
}
}