-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 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
61
{
"name": "transtype",
"displayName": "transtype",
"publisher": "LinHanPro",
"description": "🌿 一款强大的VSCode插件,能够将json数据或经过格式化后的markdown表格数据高效转换为TypeScript类型定义,助力开发者快速生成规范的代码结构,提升开发效率,让代码库更加清晰、易于维护。",
"version": "0.1.3",
"engines": {
"vscode": "^1.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinHanlove/transtype.git"
},
"icon": "public/images/logo.jpeg",
"categories": [
"Snippets",
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"type": "commonjs",
"contributes": {
"commands": [
{
"command": "transtype",
"title": "🌿 json数据或格式化后的markdown表格数据导出 typescript 类型"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "rollup -c --bundleConfigAsCjs",
"build": "pnpm compile && vsce package --yarn",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.9.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"json5": "^2.2.3",
"prettier": "^2.5.1",
"rollup": "^4.29.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"vsce": "^2.15.0"
}
}