-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 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
{
"name": "vscode-princess",
"displayName": "Princess",
"description": "Extension for the Princess language",
"version": "0.0.1",
"publisher": "vicnightfall",
"repository": {
"type": "git",
"url": "https://github.com/Victorious3/vscode-princess.git"
},
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"title": "Princess",
"properties": {
"princess.compilerPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to the Princess compiler"
}
}
},
"languages": [
{
"id": "princess",
"aliases": [
"Princess",
"princess"
],
"extensions": [
".pr"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/crown.svg",
"dark": "./icons/crown.svg"
}
}
],
"grammars": [
{
"language": "princess",
"scopeName": "source.princess",
"path": "./syntaxes/princess.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:princess"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd .."
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.13.0",
"typescript": "^4.7.2"
},
"dependencies": {
"@vscode/vsce": "^2.21.1",
"vsce": "^2.15.0"
}
}