This repository was archived by the owner on Oct 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (72 loc) · 2.29 KB
/
package.json
File metadata and controls
77 lines (72 loc) · 2.29 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
{
"name": "eas-framework-extension",
"description": "EAS-Framework Syntax highlight",
"author": "ido-pluto",
"publisher": "ido-pluto",
"displayName": "EAS-Framework",
"version": "0.0.2",
"preview": true,
"license": "MIT",
"type": "module",
"engines": {
"vscode": "^1.56.0",
"node": "14"
},
"scripts": {
"build": "vsce package"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": ["eas-framework", "ssr", "aspx", "ejs", "razor", "nodejs", "framework"],
"icon": "images/favicon.png",
"contributes": {
"languages": [{
"id": "html",
"extensions": [".mode", ".inte", ".page"]
}],
"snippets": [{
"language": "html",
"path": "./snippets/snippets.json"
}],
"grammars": [{
"scopeName": "text.html.eas-framework",
"path": "./syntaxes/eas-framework.tmLanguage.json",
"injectTo": [
"text.html"
]
}],
"debuggers": [{
"type": "eas-framework",
"label": "EAS-Framework Debug",
"program": "${workspaceFolder}/index.js",
"args": ["allowSourceDebug", "rebuild"],
"runtime": "node",
"languages": ["javascript", "typescript", "eas-framework", "javascriptreact", "typescriptreact"],
"initialConfigurations": [{
"type": "pwa-node",
"request": "launch",
"name": "Launch EAS Framework Server",
"program": "${workspaceFolder}/index.js",
"args": ["allowSourceDebug", "rebuild"],
"pauseForSourceMap": true,
"skipFiles": [
"<node_internals>/**"
],
"outFiles": [
"${workspaceFolder}/node_modules/eas-framework/dist/SystemData/*",
"${workspaceFolder}/**/*.js"
]
}],
"variables": {
"PickProcess": "extension.node-debug.pickNodeProcess"
}
}]
},
"repository": {
"type": "git",
"url": "git@gitlab.com:eas-framework/eas-framework-extension"
},
"homepage": "https://eas-framework.ml/"
}