-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "rollup-plugin-import-cdn",
"version": "0.2.3",
"description": "Import and transform modules from a CDN to rollup",
"author": "SferaDev",
"license": "ISC",
"bugs": {
"url": "https://github.com/SferaDev/rollup-plugin-import-cdn/issues"
},
"homepage": "https://github.com/SferaDev/rollup-plugin-import-cdn#readme",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SferaDev/rollup-plugin-import-cdn.git"
},
"dependencies": {
"es-module-lexer": "^0.10.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "^17.0.25",
"builtin-modules": "^3.2.0",
"isomorphic-fetch": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-dts-bundle": "^1.0.0",
"rollup-plugin-virtual-fs": "^4.0.1-alpha.0",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"undici": "^5.0.0",
"vitest": "^0.9.4"
},
"peerDependencies": {
"rollup": "^2.70.2"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false,
"printWidth": 120
}
}