-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bootstrap-icons-vue",
"version": "1.11.3",
"description": "Bootstrap icons as Vue components.",
"author": "Thomas Ip <[email protected]>",
"license": "MIT",
"main": "dist/lib.common.cjs",
"module": "dist/lib.esm.js",
"web": "dist/bundle.min.js",
"types": "dist/index.d.ts",
"unpkg": "dist/bundle.min.js",
"keywords": [
"Vue",
"VueJS",
"Vue3",
"Components",
"Icons",
"Bootstrap",
"Bootstrap Icons"
],
"repository": {
"type": "git",
"url": "https://github.com/tommyip/bootstrap-icons-vue"
},
"bugs": {
"url": "https://github.com/tommyip/bootstrap-icons-vue/issues"
},
"scripts": {
"build": "node ./src/codegen.cjs && rollup --bundleConfigAsCjs -c",
"dev:vite": "cd ./dev-vite && yarn dev",
"dev:cdn": "http-server -o dev-cdn",
"lint:js": "eslint --ext \".ts,.js,.cjs,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && npm run lint:js --fix"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"bootstrap-icons": "^1.11.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"http-server": "^14.1.0",
"prettier": "^3.2.4",
"rollup": "^4.9.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vue": "^3.4.15",
"vue-eslint-parser": "^9.4.2"
},
"files": [
"/dist"
],
"sideEffects": false,
"packageManager": "[email protected]"
}