-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "rollup-plugin-import-maps",
"version": "0.2.4",
"description": "A plugin to resolve ECMAScript module bare/url import specifiers at build-time",
"keywords": [
"rollup-plugin",
"import-maps"
],
"author": "Fuwei Chin",
"license": "MIT",
"main": "dist/index.cjs",
"type": "module",
"exports": {
"import": "./src/index.mjs",
"require": "./dist/index.cjs"
},
"engines": {
"node": ">=14.17"
},
"files": [
"src",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/fuweichin/rollup-plugin-import-maps"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js -w",
"build-toc": "ubuntu run gh-md-toc --insert --no-backup --hide-footer --skip-header README.md",
"fixtures": "node spec/run-fixtures.mjs",
"test": "jasmine"
},
"dependencies": {
"import-maps": "^0.2.4",
"schema-utils": "^4.0.0"
},
"devDependencies": {
"rollup": "^2.75.5"
},
"peerDependencies": {
"rollup": ">=2.0"
}
}