-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.42 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.42 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
{
"name": "tibbo-basic",
"displayName": "Tibbo Basic Language",
"description": "Tibbo Basic Language Support",
"author": {
"name": "Jimmy Hu",
"email": "jimmy.hu@tibbo.com"
},
"license": "MIT",
"version": "1.1.8",
"repository": {
"type": "git",
"url": "https://github.com/tibbotech/tibbo-basic.git"
},
"bugs": {
"url": "https://github.com/tibbotech/tibbo-basic/issues",
"email": "jimmy.hu@tibbo.com"
},
"publisher": "tibbotech",
"categories": [
"Programming Languages"
],
"keywords": [
"tibbo-basic"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:tibbo-basic",
"workspaceContains:*.tpr",
"workspaceContains:*.tbs"
],
"icon": "images/icon.png",
"main": "./client/out/extension.js",
"scripts": {
"postinstall": "cd server && npm install",
"compile": "tsc -b",
"build": "tsc -b",
"watch": "tsc -b -w",
"webpack": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode production --config ./client/webpack.config.js && webpack --mode production --config ./server/webpack.config.js",
"vscode:prepublish": "npm run webpack",
"package": "vsce package",
"test": "cd server && npm run test"
},
"contributes": {
"languages": [
{
"id": "tibbo-basic",
"aliases": [
"Tibbo Basic"
],
"extensions": [
".tbs",
".tbh",
".tph",
".tpr"
],
"configuration": "./syntaxes/tibbo-basic-language-configuration.json"
}
],
"grammars": [
{
"language": "tibbo-basic",
"scopeName": "source.tibbo-basic",
"path": "./syntaxes/tibbo-basic.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.75.1",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"merge-options": "^3.0.4",
"ts-loader": "^7.0.5",
"ts-node": "^8.4.1",
"typescript": "4.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}