-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.34 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
{
"name": "erb-inline-js-helper",
"displayName": "ERB Inline JS Helper",
"description": "VS Code extension to provide syntax highlighting and code completion for JavaScript in ERB files.",
"version": "0.4.0",
"license": "MIT",
"pricing": "Free",
"icon": "icon.png",
"author": {
"name": "kudoas"
},
"publisher": "kudoas",
"repository": {
"type": "git",
"url": "git+https://github.com/kudoas/erb-inline-js-helper.git"
},
"extensionDependencies": [
"Shopify.ruby-lsp"
],
"engines": {
"vscode": "^1.107.0",
"node": "24.x"
},
"categories": [
"Programming Languages"
],
"keywords": [
"HTML",
"ERB",
"Ruby",
"JavaScript"
],
"contributes": {
"commands": [
{
"command": "erbInlineJsHelper.restartLanguageService",
"title": "Restart Language Service",
"category": "ERB Inline JS Helper"
}
],
"grammars": [
{
"scopeName": "erb.inline-js.injection",
"path": "./syntaxes/erb.tmLanguage.json",
"injectTo": [
"text.html.erb"
],
"embeddedLanguages": {
"meta.embedded.block.javascript.erb": "javascript"
}
}
]
},
"activationEvents": [
"onLanguage:erb"
],
"main": "./dist/extension.js",
"scripts": {
"build": "bun x tsc -p tsconfig.json",
"watch": "bun x tsc -w -p tsconfig.json",
"lint": "bun x biome lint src",
"lint:fix": "bun x biome lint --write src",
"test": "NODE_OPTIONS=--disable-warning=MODULE_TYPELESS_PACKAGE_JSON TS_NODE_PROJECT=tsconfig.test.json bun x mocha --ui tdd --require ts-node/register --extension ts \"src/test/unit/**/*.test.ts\"",
"test:watch": "NODE_OPTIONS=--disable-warning=MODULE_TYPELESS_PACKAGE_JSON TS_NODE_PROJECT=tsconfig.test.json bun x mocha --ui tdd --require ts-node/register --extension ts --watch --watch-files \"src/**/*.ts\" \"src/test/unit/**/*.test.ts\"",
"pretest:e2e": "bun x tsc -p tsconfig.json",
"test:e2e": "node ./dist/test/runTest.js"
},
"packageManager": "bun@1.3.5",
"dependencies": {
"typescript": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"@types/vscode": "^1.107.0",
"@vscode/test-electron": "^2.4.3",
"mocha": "^11.0.0",
"ts-node": "^10.9.2"
}
}