-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
109 lines (109 loc) · 2.79 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
101
102
103
104
105
106
107
108
109
{
"name": "zmk-tools",
"displayName": "ZMK Tools",
"description": "Tools for working with ZMK Firmware",
"version": "1.5.0",
"publisher": "spadin",
"license": "MIT",
"author": {
"name": "Joel Spadin"
},
"repository": {
"type": "git",
"url": "https://github.com/joelspadin/zmk-tools.git"
},
"icon": "images/zmk_logo.png",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"contributes": {
"languages": [
{
"id": "dts",
"aliases": [
"Devicetree"
],
"extensions": [
".keymap",
".overlay"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dts",
"scopeName": "source.dts",
"path": "./syntaxes/dts.tmLanguage.json"
}
],
"configuration": {
"title": "ZMK Tools",
"properties": {
"zmk.configPath": {
"type": "string",
"description": "Workspace-relative path to the folder containing ZMK config files",
"scope": "resource"
},
"zmk.buildMatrixPath": {
"type": "string",
"description": "Workspace-relative path to the build matrix file",
"scope": "resource"
}
}
},
"commands": [
{
"command": "zmk.addKeyboard",
"category": "ZMK",
"title": "Add Keyboard"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. zmk"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/mocha": "^10.0.9",
"@types/vscode": "^1.94.0",
"@types/webpack-env": "^1.18.5",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/test-web": "^0.0.62",
"assert": "^2.1.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.13.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"process": "^0.11.10",
"tree-sitter-cli": "^0.24.3",
"tree-sitter-devicetree": "^0.12.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"yaml-loader": "^0.8.1"
},
"dependencies": {
"markdown-escape": "^2.0.0",
"web-tree-sitter": "^0.24.3",
"yaml": "^2.6.0"
}
}