-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "vite-plugin-externals",
"version": "0.6.2",
"description": "externals plugin for vite",
"author": "crcong",
"repository": {
"type": "git",
"url": "https://github.com/crcong/vite-plugin-externals"
},
"homepage": "https://github.com/crcong/vite-plugin-externals",
"bugs": "https://github.com/crcong/vite-plugin-externals/issues",
"license": "MIT",
"scripts": {
"dev": "tsc -w",
"build": "pnpm lint:fix && rimraf dist && tsc && pnpm build:es",
"build:es": "tsc --module ESNEXT --outDir dist/es",
"lint:fix": "eslint --fix ./src/**/*.ts",
"test": "vitest",
"release": "pnpm build && bumpp --push --tag --commit && npm publish"
},
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"vite-plugin",
"external",
"externals"
],
"types": "index.d.ts",
"main": "dist/src/index.js",
"module": "dist/es/src/index.js",
"peerDependencies": {
"vite": ">=2.0.0"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"devDependencies": {
"@crcong/eslint-config-typescript": "^0.3.0",
"@types/estree": "^0.0.48",
"@types/fs-extra": "^9.0.12",
"@types/node": "^17.0.45",
"@types/ws": "^8.2.2",
"bumpp": "^7.1.1",
"eslint": "^8.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.51.2",
"typescript": "^4.8.3",
"vite": "^2.7.1",
"vitest": "^0.22.1"
},
"dependencies": {
"acorn": "^8.4.0",
"es-module-lexer": "^0.4.1",
"fs-extra": "^10.0.0",
"magic-string": "^0.25.7"
}
}