-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.19 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
83
84
85
86
87
88
89
90
{
"name": "@tomjs/vite-plugin-vscode",
"version": "2.3.1",
"description": "Use vue/react to develop 'vscode extension webview', supporting esm/cjs",
"keywords": [
"vite",
"plugin",
"vscode",
"html",
"hmr",
"extension",
"webview",
"esm",
"cjs"
],
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"env.d.ts"
],
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@9.1.4",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/vite-plugin-vscode.git"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "run-s lint:eslint lint:stylelint lint:prettier",
"lint:eslint": "eslint \"{src,scripts,examples}/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:stylelint": "stylelint \"examples/**/*.{css,scss,less,vue,html}\" --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@tomjs/vscode-extension-webview": "^1.2.0",
"dayjs": "^1.11.10",
"execa": "^5.1.1",
"kolorist": "^1.8.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"node-html-parser": "^6.1.12",
"tsup": "7.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@tomjs/commitlint": "^2.1.2",
"@tomjs/eslint": "^1.2.2",
"@tomjs/prettier": "^1.1.1",
"@tomjs/stylelint": "^2.2.0",
"@tomjs/tsconfig": "^1.3.0",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^18.19.7",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.2",
"rimraf": "^5.0.5",
"stylelint": "^16.1.0",
"tsx": "^4.7.0",
"typescript": "~5.3.3"
},
"peerDependencies": {
"vite": ">=2"
}
}