This repository has been archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "vite-plugin-cdn-import-rely",
"version": "3.1.0",
"description": "A vite plugin make import rely from CDN easier",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"publish": "tsup src/index.ts --dts --format cjs,esm && npm publish"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ttxs25830/vite-plugin-cdn-import-rely.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"cdn",
"import",
"vite",
"plugin"
],
"author": "ttxs25830 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ttxs25830/vite-plugin-cdn-import-rely/issues"
},
"homepage": "https://github.com/ttxs25830/vite-plugin-cdn-import-rely#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"babel-jest": "^29.0.2",
"jest": "^29.0.2",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2",
"vite": "^3.0.9"
},
"dependencies": {
"axios": "^0.27.2",
"get-sri": "^1.0.2",
"rollup-plugin-external-globals": "^0.6.1"
}
}