This repository was archived by the owner on Aug 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "arkdark",
"displayName": "ArkDark",
"description": "ArkType syntax highlighting and theme⛵",
"version": "2.0.5",
"private": true,
"publisher": "arktypeio",
"type": "module",
"scripts": {
"build": "ts-node --esm ./src/writeTheme.ts",
"try": "pnpm build && ts-node --esm ./installLocal.ts",
"vspublish": "pnpm build && npx vsce publish"
},
"devDependencies": {
"@types/node": "18.15.13",
"ts-node": "10.9.1",
"vsce": "2.15.0",
"typescript": "5.1.0-beta",
"arktype": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/arktypeio/arkdark"
},
"engines": {
"vscode": "^1.0.0"
},
"icon": "icon.png",
"categories": [
"Themes",
"Programming Languages"
],
"contributes": {
"themes": [
{
"label": "ArkDark",
"uiTheme": "vs-dark",
"path": "./themes/arkDark.json"
}
],
"grammars": [
{
"injectTo": [
"source.ts",
"source.ts.tsx",
"source.js",
"source.js.jsx"
],
"scopeName": "arktype.injection.ts",
"path": "arktype.tmLanguage.json"
}
]
}
}