-
Notifications
You must be signed in to change notification settings - Fork 256
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "blacklight-frontend",
"version": "9.0.0-alpha",
"description": "The frontend code and styles for Blacklight",
"exports": {
"./blacklight.esm.js": "./app/assets/javascripts/blacklight/blacklight.esm.js",
"./stylesheets/*": "./app/assets/stylesheets/blacklight/*",
".": {
"import": "./app/javascript/blacklight-frontend/index.js",
"require": "./app/assets/javascripts/blacklight.js"
},
"./*": "./app/javascript/blacklight-frontend/*.js"
},
"type": "module",
"scripts": {
"prepare": "rollup --config rollup.config.js --sourcemap && ESM=true rollup --config rollup.config.js --sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectblacklight/blacklight.git"
},
"files": [
"app/assets",
"app/javascript"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/projectblacklight/blacklight/issues"
},
"homepage": "https://github.com/projectblacklight/blacklight#readme",
"devDependencies": {
"rollup": "^4.24.0",
"rollup-plugin-includepaths": "^0.2.4"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"bootstrap": ">=4.3.1 <6.0.0"
}
}