-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 KB
/
package.json
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
{
"name": "freakc",
"displayName": "FreakC",
"description": "Language support for the esoteric programming language FreakC",
"publisher": "FreakC",
"icon": "fclang.png",
"main": "./bundled/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/nguyenphuminh/FreakC.git"
},
"activationEvents": [
"onLanguage:freakc"
],
"version": "1.0.0",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "freakc",
"aliases": [
"FreakC",
"fclang"
],
"extensions": [
".fclang"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "freakc",
"scopeName": "source.fclang",
"path": "./syntaxes/freakc.tmLanguage"
}]
},
"scripts": {
"compile": "tsc ./src/extension.ts",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"vscode": "^1.1.37",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"tsc": "^1.20150623.0",
"typescript-compiler": "^1.4.1-2",
"vsce": "^1.84.0"
}
}