-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
166 lines (166 loc) · 6.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "vite-plugin-cdn2",
"version": "1.1.0",
"description": "A Vite plugin that allowed you replace module with CDN",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"workspaces": [
"examples/*",
"e2e/*"
],
"scripts": {
"build": "tsup",
"test": "c8 -r=lcov ava __tests__/*.spec.ts",
"lint": "eslint . --fix",
"dev": "tsup --watch src",
"e2e": "ava e2e/**/*.spec.ts"
},
"keywords": [
"vite",
"vite-plugin",
"cdn",
"vite-plugin-cdn"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./resolver/*": {
"types": "./dist/resolver/*.d.ts",
"import": "./dist/resolver/*.mjs",
"require": "./dist/resolver/*.js"
},
"./resolve": {
"types": "./dist/resolve.d.ts",
"import": "./dist/resolve.mjs",
"require": "./dist/resolve.js"
},
"./scanner": {
"types": "./dist/scanner.d.ts",
"import": "./dist/scanner.mjs",
"require": "./dist/scanner.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"author": "Kanno",
"license": "MIT",
"homepage": "https://github.com/nonzzz/vite-plugin-cdn",
"bugs": {
"url": "https://github.com/nonzzz/vite-plugin-cdn/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nonzzz/vite-plugin-cdn.git"
},
"devDependencies": {
"@nolyfill/es-aggregate-error": "^1.0.20",
"@rollup/plugin-json": "^6.0.0",
"@types/babel__core": "^7.20.1",
"@types/debug": "^4.1.8",
"@types/node": "^20.5.0",
"@types/react": "^18.2.36",
"ava": "^5.2.0",
"c8": "^7.12.0",
"eslint": "^8.51.0",
"eslint-config-kagura": "^2.0.1",
"playwright": "^1.35.1",
"react": "^18.2.0",
"tsup": "^7.1.0",
"tsx": "^3.14.0",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vue": "^3.3.4"
},
"dependencies": {
"@babel/core": "^7.22.5",
"@rollup/pluginutils": "^5.0.2",
"@xn-sakina/rml-wasm": "^2.1.1",
"debug": "^4.3.4",
"magic-string": "^0.30.5",
"rs-module-lexer": "^2.1.1"
},
"ava": {
"files": [
"__tests__/*.spec.ts",
"e2e/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"tsx/cjs"
]
},
"resolutions": {
"function-bind": "npm:@nolyfill/function-bind@latest",
"has": "npm:@nolyfill/has@latest",
"array-buffer-byte-length": "npm:@nolyfill/array-buffer-byte-length@latest",
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"arraybuffer.prototype.slice": "npm:@nolyfill/arraybuffer.prototype.slice@latest",
"asynciterator.prototype": "npm:@nolyfill/asynciterator.prototype@latest",
"available-typed-arrays": "npm:@nolyfill/available-typed-arrays@latest",
"define-properties": "npm:@nolyfill/define-properties@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"es-set-tostringtag": "npm:@nolyfill/es-set-tostringtag@latest",
"function.prototype.name": "npm:@nolyfill/function.prototype.name@latest",
"get-symbol-description": "npm:@nolyfill/get-symbol-description@latest",
"globalthis": "npm:@nolyfill/globalthis@latest",
"gopd": "npm:@nolyfill/gopd@latest",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"has-tostringtag": "npm:@nolyfill/has-tostringtag@latest",
"internal-slot": "npm:@nolyfill/internal-slot@latest",
"is-array-buffer": "npm:@nolyfill/is-array-buffer@latest",
"is-date-object": "npm:@nolyfill/is-date-object@latest",
"is-generator-function": "npm:@nolyfill/is-generator-function@latest",
"is-regex": "npm:@nolyfill/is-regex@latest",
"is-shared-array-buffer": "npm:@nolyfill/is-shared-array-buffer@latest",
"is-string": "npm:@nolyfill/is-string@latest",
"is-symbol": "npm:@nolyfill/is-symbol@latest",
"is-weakref": "npm:@nolyfill/is-weakref@latest",
"iterator.prototype": "npm:@nolyfill/iterator.prototype@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"reflect.getprototypeof": "npm:@nolyfill/reflect.getprototypeof@latest",
"regexp.prototype.flags": "npm:@nolyfill/regexp.prototype.flags@latest",
"safe-array-concat": "npm:@nolyfill/safe-array-concat@latest",
"safe-regex-test": "npm:@nolyfill/safe-regex-test@latest",
"side-channel": "npm:@nolyfill/side-channel@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"string.prototype.trim": "npm:@nolyfill/string.prototype.trim@latest",
"string.prototype.trimend": "npm:@nolyfill/string.prototype.trimend@latest",
"string.prototype.trimstart": "npm:@nolyfill/string.prototype.trimstart@latest",
"typed-array-buffer": "npm:@nolyfill/typed-array-buffer@latest",
"typed-array-byte-length": "npm:@nolyfill/typed-array-byte-length@latest",
"typed-array-byte-offset": "npm:@nolyfill/typed-array-byte-offset@latest",
"typed-array-length": "npm:@nolyfill/typed-array-length@latest",
"unbox-primitive": "npm:@nolyfill/unbox-primitive@latest",
"which-boxed-primitive": "npm:@nolyfill/which-boxed-primitive@latest",
"which-typed-array": "npm:@nolyfill/which-typed-array@latest",
"tsup@^7.1.0": "patch:tsup@npm%3A7.1.0#./.yarn/patches/tsup-npm-7.1.0-3fe66cd74a.patch"
},
"packageManager": "[email protected]"
}