This repository has been archived by the owner on Jan 2, 2023. It is now read-only.
forked from skellock/vscode-just
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
90 lines (90 loc) · 2.05 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
{
"name": "justfile",
"displayName": "justfile",
"description": "Provides syntax and recipe launcher for Just scripts.",
"version": "2.1.0",
"publisher": "sclu1034",
"private": true,
"license": "MIT",
"icon": "images/robot.png",
"engines": {
"vscode": "^1.18.0"
},
"keywords": [
"just",
"justfile",
"make",
"scripts",
"task",
"recipe",
"launch"
],
"repository": {
"url": "https://github.com/sclu1034/vscode-just.git"
},
"bugs": {
"url": "https://github.com/sclu1034/vscode-just/issues"
},
"homepage": "https://github.com/sclu1034/vscode-just",
"categories": [
"Programming Languages",
"Other"
],
"main": "./out/extension",
"activationEvents": [
"onCommand:just.run"
],
"contributes": {
"commands": [
{
"command": "just.run",
"title": "Just: Run Recipe"
}
],
"languages": [
{
"id": "just",
"aliases": [
"Just",
"just"
],
"extensions": [
"justfile",
"Justfile"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "just",
"scopeName": "source.just",
"path": "./syntaxes/just.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.js": "javascript",
"meta.embedded.block.lua": "lua",
"meta.embedded.block.perl": "perl",
"meta.embedded.block.ruby": "ruby",
"meta.embedded.block.python": "python",
"meta.embedded.block.shellscript": "shellscript"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.13",
"typescript": "^4.5.5",
"vscode": "^1.1.6"
},
"dependencies": {
"execa": "^6.0.0"
}
}