-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "@programmerg/bs-elements",
"description": "Bootstrap 5-based, framework-agnostic Web Component library",
"version": "0.1.1",
"keywords": [
"bootstrap",
"components",
"web components",
"custom elements",
"html elements",
"ui library",
"ui framework"
],
"homepage": "https://programmerg.github.io/bs-elements",
"author": "Gelencsér Gergő",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/programmerg/bs-elements.git"
},
"bugs": {
"url": "https://github.com/programmerg/bs-elements/issues"
},
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"files": [
"dist/",
"src/",
"custom-elements.json"
],
"customElements": "custom-elements.json",
"dependencies": {
"bootstrap": "^5.3.8"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.57.1"
},
"scripts": {
"build:manifest": "npx custom-elements-manifest analyze --litelement --globs src/**/*.js",
"build:dist": "rollup -c",
"build": "npm run build:dist && npm run build:manifest",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm publish --access public"
}
}