forked from rollup/rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 905 Bytes
/
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
{
"name": "@rollup/browser",
"version": "4.24.0",
"description": "Next-generation ES module bundler browser build",
"main": "dist/rollup.browser.js",
"module": "dist/es/rollup.browser.js",
"types": "dist/rollup.browser.d.ts",
"repository": "rollup/rollup",
"keywords": [
"modules",
"bundler",
"bundling",
"es6",
"optimizer",
"browser"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup/issues"
},
"homepage": "https://rollupjs.org/",
"dependencies": {
"@types/estree": "1.0.6"
},
"files": [
"dist/**/*.wasm",
"dist/**/*.js",
"dist/*.d.ts",
"dist/es/package.json",
"dist/rollup.browser.js.map"
],
"exports": {
".": {
"types": "./dist/rollup.browser.d.ts",
"require": "./dist/rollup.browser.js",
"import": "./dist/es/rollup.browser.js"
},
"./dist/*": "./dist/*"
}
}