-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.29 KB
/
package.json
File metadata and controls
96 lines (96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "candy",
"displayName": "🍭 Candy",
"description": "Candy language support",
"publisher": "🍭 Candy",
"version": "0.4.0",
"repository": {
"type": "git",
"url": "https://github.com/candy-lang/candy.git",
"directory": "vscode_extension_v4"
},
"//": "Keep in sync with `devDependencies.@types/vscode`",
"//": "https://github.com/ewanharris/vscode-versions",
"engines": {
"node": "^18.17.1",
"vscode": "^1.86.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"workspaceContains:**/*.candy"
],
"main": "./out/extension.js",
"contributes": {
"configurationDefaults": {
"[candy]": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.semanticHighlighting.enabled": true,
"editor.suggest.insertMode": "replace",
"editor.tabSize": 2
}
},
"languages": [
{
"id": "candy",
"extensions": [
".candy"
],
"aliases": [
"🍭 Candy"
],
"configuration": "./declarative/language-configuration.json"
}
],
"grammars": [
{
"language": "candy",
"scopeName": "source.candy",
"path": "./candy.tmGrammar.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint --ext ts .",
"watch": "tsc -watch -p ./"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.15.2",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"project": true,
"sourceType": "module"
},
"rules": {
"prettier/prettier": "warn"
}
},
"prettier": {}
}