-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "bootstrap5-select",
"version": "0.0.18",
"description": "Bootstrap 5 Select Component",
"repository": {
"type": "git",
"url": "https://github.com/ecmel/bootstrap5-select.git"
},
"author": {
"name": "Ecmel Ercan",
"url": "https://ecmel.dev/"
},
"license": "MIT",
"keywords": [
"bootstrap",
"select",
"tags"
],
"files": [
"dist",
"select.scss"
],
"main": "./dist/select.cjs",
"module": "./dist/select.mjs",
"types": "./dist/select.d.ts",
"sass": "./select.scss",
"scripts": {
"clean": "git clean -Xdf",
"prereset": "npm run clean",
"reset": "npm install",
"update": "ncu -u -x prettier",
"format": "prettier --ignore-path .gitignore -w --list-different .",
"build": "rollup -c --forceExit",
"prepack": "npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/bootstrap": "^5.2.10",
"bootstrap": "^5.3.2",
"prettier": "^2.8.8",
"rollup": "^4.9.5",
"rollup-plugin-cleandir": "^2.0.0",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}