forked from MMF-FE/vite-plugin-cdn-import
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "vite-plugin-cdn-import",
"version": "0.0.0",
"description": "Import packages from CDN for the vite plugin",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"vite cdn plugin",
"vite CDN extension"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmf-fe/vite-plugin-cdn-import.git"
},
"scripts": {
"dev": "npm run build -- --watch",
"example:vue": "npm -C example/vue run dev",
"example:react": "npm -C example/react run dev",
"example:vue:build": "npm -C example/vue run build",
"example:react:build": "npm -C example/react run build",
"build": "tsup src/index.ts --dts --format cjs,esm"
},
"author": "vfasky<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^15.3.0",
"tsup": "^4.10.1",
"typescript": "^4.2.4",
"vite": "^2.3.7"
},
"dependencies": {
"rollup-plugin-external-globals": "^0.6.1"
}
}