-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
{
"name": "ms-access-dump-format",
"displayName": "MS Access Dump Format",
"description": "Analyze and fix MS Access dump files",
"license": "ISC",
"sponsor": {
"url": "https://ko-fi.com/anticultist"
},
"version": "0.6.1",
"publisher": "anticultist",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/anticultist/vscode-ms-access-dump"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "access-dump",
"aliases": [
"MS Access Dump",
"access-dump"
],
"extensions": [
".form",
".mac",
".qry",
".report"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "access-dump",
"scopeName": "source.access-dump",
"path": "./syntaxes/access-dump.tmLanguage.json",
"embeddedLanguages": {
"source.vba": "vba",
"source.sql": "sql",
"meta.embedded.block.vba": "vba",
"source.asp.vb.net": "vb"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run webpack",
"webpack": "npm run clean && webpack --mode production --config ./client/webpack.config.js && webpack --mode production --config ./server/webpack.config.js && npm run copy-tree-sitter",
"webpack:dev": "npm run clean && webpack --mode none --config ./client/webpack.config.js && webpack --mode none --config ./server/webpack.config.js && npm run copy-tree-sitter",
"copy-tree-sitter": "copyfiles -f ./server/node_modules/web-tree-sitter/*.wasm ./server/out",
"compile": "tsc -b",
"compile:client": "tsc -b ./client/tsconfig.json",
"compile:server": "tsc -b ./server/tsconfig.json",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"clean": "rimraf client/out client/.vscode-test server/out",
"test": "cd client && npm test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@typescript-eslint/parser": "^7.13.0",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"merge-options": "^3.0.4",
"mocha": "^10.4.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
}
}