-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
{
"name": "vite-plugin-externals-extension",
"version": "0.0.7",
"packageManager": "pnpm@7.0.0",
"keywords": [
"vite",
"react",
"vite-plugin"
],
"license": "MIT",
"author": "XiSenao",
"repository": {
"type": "git",
"url": "https://github.com/XiSenao/vite-plugin-externals-extension"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"homepage": "https://github.com/XiSenao/vite-plugin-externals-extension",
"bugs": "https://github.com/XiSenao/vite-plugin-externals-extension/issues",
"scripts": {
"dev": "tsup --format cjs,esm --dts --clean --watch",
"build": "tsup --format cjs,esm --dts --clean --sourcemap",
"build-all": "make build",
"clean-all-node-modules": "make clean-node-modules",
"clean": "make clean",
"pre": "make pre",
"lint-staged": "lint-staged",
"format": "prettier -w src/**/*.* examples/**/*.*",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0-0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.27.0",
"eslint-define-config": "^1.12.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsup": "^6.5.0",
"typescript": "4.6.4",
"vite": "3.2.4",
"vitest": "^0.25.2"
},
"lint-staged": {
"*.{ts,js,json,tsx,jsx,vue}": [
"prettier --write",
"eslint --cache --fix",
"eslint"
]
}
}