-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.22 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@tomjs/vite-plugin-vscode",
"type": "module",
"version": "7.1.1",
"packageManager": "pnpm@10.26.2",
"description": "Use vue/react to develop 'vscode extension webview', supporting esm/cjs",
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/vite-plugin-vscode.git"
},
"keywords": [
"vite",
"plugin",
"vscode",
"html",
"hmr",
"extension",
"webview",
"esm",
"cjs"
],
"exports": {
".": "./dist/index.js",
"./webview": "./dist/webview.js",
"./client": "./dist/client.iife.js",
"./env": "./env.d.ts",
"./types": {
"types": "./env.d.ts"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=18.19"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "pnpm clean && tsdown --watch",
"build": "pnpm clean && tsdown",
"clean": "rimraf ./dist",
"lint": "run-s lint:stylelint lint:eslint",
"lint:eslint": "eslint --fix",
"lint:stylelint": "stylelint \"examples/**/*.{css,scss,less,vue,html}\" --fix --cache",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"@types/vscode": "^1.56.0",
"vite": ">=2"
},
"dependencies": {
"@tomjs/node": "^2.2.3",
"execa": "^9.6.1",
"lodash.merge": "^4.6.2",
"node-html-parser": "^7.0.2",
"picocolors": "^1.1.1",
"tsdown": "~0.19.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@commitlint/cli": "^20.3.1",
"@tomjs/commitlint": "^5.0.0",
"@tomjs/eslint": "^6.5.0",
"@tomjs/stylelint": "^7.1.1",
"@tomjs/tsconfig": "^3.2.0",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.19.28",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"publint": "^0.3.16",
"rimraf": "^6.1.2",
"simple-git-hooks": "^2.13.1",
"stylelint": "^16.26.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^8.0.0-beta.8"
}
}