-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.56 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-inject-externals",
"version": "1.1.1",
"description": "When vite is packaged, the specified package is changed to be imported from CDN.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsup src/index.ts --dts --format cjs,esm --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/lihanspace/vite-plugin-inject-externals.git"
},
"keywords": [
"vite",
"plugin",
"cdn",
"external",
"global",
"build",
"script",
"link"
],
"bugs": {
"url": "https://github.com/lihanspace/vite-plugin-inject-externals/issues"
},
"homepage": "https://github.com/lihanspace/vite-plugin-inject-externals#readme",
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"tsup": "^7.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"dependencies": {
"rollup-plugin-external-globals": "^0.8.0"
},
"author": "LiHan <[email protected]> (https://lihan.space)",
"license": "MIT"
}