-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.39 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
{
"name": "spicelang",
"displayName": "Spice",
"description": "Spice language extension",
"version": "1.1.0",
"publisher": "chillibits",
"author": {
"name": "Marc Auberer <[email protected]>"
},
"license": "MIT",
"icon": "media/logo.png",
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"galleryBanner": {
"color": "#F2F2F2",
"theme": "light"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/chillibits/spice"
},
"bugs": {
"url": "https://github.com/chillibits/spice/issues"
},
"engines": {
"vscode": "^1.85.0"
},
"main": "./dist/spiceMain.js",
"contributes": {
"languages": [
{
"id": "spice",
"aliases": [
"Spice"
],
"extensions": [
".spice"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "spice",
"scopeName": "source.spice",
"path": "./syntaxes/spice.tmLanguage.xml"
}
],
"snippets": [
{
"language": "spice",
"path": "./snippets/spice.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"bundle": "esbuild src/spiceMain.ts --bundle --outdir=dist --external:vscode --format=cjs --platform=node",
"bundle-dev": "npm run bundle -- --sourcemap",
"bundle-watch": "npm run bundle -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "npm run bundle",
"watch": "tsc -watch -p ./",
"test": "npm run test-compile && node ./out/test/runTest.js",
"lint": "gts lint src test",
"fix-lint": "gts fix src test",
"unit-test": "npm run test-compile && node ./node_modules/mocha/bin/_mocha -u tdd --timeout 5000 --colors ./out/test/unit",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"devDependencies": {
"@types/vscode": "^1.98.0",
"tslint": "^6.1.3",
"typescript": "^5.8.2",
"yarn": "^1.22.22"
},
"activationEvents": [
"workspaceContains:**/*.spice"
]
}