-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (59 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (59 loc) · 1.47 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
55
56
57
58
59
60
{
"name": "tcv-typescript-constructor-generator",
"displayName": "TypeScript constructor generator",
"description": "Auto generate constructor for TypeScript object in VS code",
"version": "1.0.0",
"publisher": "toanchivu",
"icon": "icon.png",
"galleryBanner": {
"color": "#2081bd",
"theme": "dark"
},
"capabilities": {
"codeActionProvider": "true"
},
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/toanvc/typescript-constructor-generator.git"
},
"homepage": "https://github.com/toanvc/typescript-constructor-generator",
"bugs": {
"url": "https://github.com/toanvc/typescript-constructor-generator/issues"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "tcv-typescript-constructor-generator.constructor",
"title": "TypeScript: Generate Constructor1"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.26.1",
"eslint": "^8.56.0",
"eslint-config-standard": "17.1.0",
"typescript": "^5.4.5",
"vscode-test": "^1.6.1"
},
"dependencies": {
}
}