-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
62 lines (62 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
{
"name": "vite-plugin-cdn-import",
"version": "1.0.1",
"description": "Import packages from CDN for the vite plugin",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"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",
"build": "tsup src/index.ts --dts --format cjs,esm",
"example": "node ./scripts/run-example.js",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"author": "vfasky<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"chalk": "^5.3.0",
"execa": "^8.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"dependencies": {
"rollup-plugin-external-globals": "^0.10.0",
"vite-plugin-externals": "^0.6.2"
},
"lint-staged": {
"*.{ts,js,tsx,json,css,scss,less}": [
"prettier --write"
],
"*.{scss,less}": [
"stylelint --fix"
]
}
}