-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "rust-rbatis-generator",
"displayName": "rust-rbatis-generator",
"description": "simplify rust code generator with rbatis",
"repository": "https://github.com/BigBaBei/rust-rbatis-generator.git",
"publisher": "pengyi",
"version": "0.0.1",
"icon": "images/logo256.png",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "rust-rbatis-generator.generate",
"title": "generate struct"
}
],
"configuration": {
"title": "rust-rbatis-generator",
"properties": {
"rust-rbatis-generator.enable": {
"type": "boolean",
"default": true,
"description": "enable/disable this extension"
}
}
},
"menus": {
"explorer/context": [
{
"command": "rust-rbatis-generator.generate",
"when": "resourceLangId == rust"
}
]
}
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"sql-ddl-to-json-schema": "^4.1.0"
}
}