-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.32 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
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
97
98
99
100
{
"name": "sb4-extension",
"displayName": "sb4-extension",
"version": "3.0.2",
"description": "Extensions for SmileBasic4",
"publisher": "arrow2nd",
"author": {
"name": "arrow2nd"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"SmileBasic",
"petitcom"
],
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:sb4"
],
"engines": {
"vscode": "^1.62.0"
},
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"contributes": {
"languages": [
{
"id": "sb4",
"aliases": [
"SB4",
"sb4"
],
"extensions": [
".prg"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "sb4",
"scopeName": "source.prg",
"path": "./syntaxes/sb4.tmLanguage.json"
}
],
"snippets": [
{
"language": "sb4",
"path": "./snippets/snippets.json"
}
],
"configurationDefaults": {
"[sb4]": {
"editor.tabSize": 1,
"editor.insertSpaces": true
}
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/arrow2nd/sb4-extension/issues",
"email": "contact@arrow2nd.com"
},
"repository": {
"type": "git",
"url": "https://github.com/arrow2nd/sb4-extension"
},
"homepage": "https://www.arrow2nd.com/works/sb4-ext",
"scripts": {
"vsce:deploy": "vsce publish --yarn",
"vsce:package": "vsce package",
"vscode:prepublish": "yarn run compile && yarn run compile:web",
"compile": "tsc -p ./",
"compile:web": "webpack",
"watch": "tsc -watch -p ./",
"watch:web": "webpack --watch",
"package:web": "webpack --mode production --devtool hidden-source-map",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/vscode": "^1.62.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"ts-loader": "^9.4.2",
"typescript": "^4.5.2",
"vsce": "^2.7.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"node": "^16.13.0"
}
}