-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.83 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
{
"name": "vscode-tree-extension",
"displayName": "Tree",
"description": "Language support for Tree files",
"version": "0.0.12",
"publisher": "CTC",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.28.0"
},
"main": "./dist/extension.js",
"browser": "./dist/web-extension.js",
"activationEvents": [
"onLanguage:tree",
"onStartupFinished"
],
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/structure-codes/vscode-tree-language.git"
},
"contributes": {
"languages": [
{
"id": "tree",
"extensions": [
".tree"
],
"aliases": [
"tree",
"tree-file"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tree",
"scopeName": "source.tree",
"path": "./syntaxes/tree.tmLanguage.json"
}
]
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev": "webpack --watch",
"package": "vsce package --yarn",
"patch-insiders": "node scripts/applyInsidersPatch.js",
"test": "jest"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/vscode": "^1.28.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vsce": "^2.3.0",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@structure-codes/utils": "^0.0.3"
}
}