-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 922 Bytes
/
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
{
"name": "uns",
"version": "1.0.0",
"description": "uns is a lispy programming language using primarily the characters one can reach without using the shift key",
"type": "module",
"engines": {
"vscode": "^1.88.0"
},
"contributes": {
"commands": [
{
"command": "wunslang.helloWorld",
"title": "Hello World"
}
],
"languages": [
{
"id": "wuns",
"extensions": [
".wuns"
]
}
],
"grammars": [
{
"language": "wuns",
"scopeName": "source.wuns",
"path": "./wunslang/wuns.tmGrammar.json"
}
]
},
"main": "./wunslang/extension.js",
"scripts": {
"test": "node nodetest.js && qjs quickjs/test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"printWidth": 100
}
}