-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.62 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "bootstrap-react-logic",
"version": "0.1.0-alpha.58",
"description": "BRL is a React component library integrated with Bootstrap, offering a set of components and utilities to help developers build user interfaces in React applications, enhancing development efficiency.",
"author": "dafengzhen",
"license": "MIT",
"type": "module",
"files": [
"dist-lib"
],
"main": "dist-lib/bootstrap-react-logic.cjs",
"style": "dist-lib/bootstrap-react-logic.css",
"module": "dist-lib/bootstrap-react-logic.js",
"types": "dist-lib/main.d.ts",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"browserslist": "npx browserslist",
"build": "tsc -b && vite build --config vite.config.ts --mode app",
"build:full": "npm run lint && npm run build",
"build:lib": "tsc -b tsconfig.lib.json && vite build --config vite.config.lib.ts --mode lib",
"commit": "commit",
"commit:check": "npx commitlint --from HEAD~1 --to HEAD --verbose",
"dev": "vite",
"dev:force": "vite --force",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"prettier": "npx prettier . --write --ignore-unknown",
"prettier:check": "npx prettier . --check --ignore-unknown",
"preview": "vite preview",
"publish:alpha": "npm run build:lib && npm publish --tag alpha",
"publish:beta": "npm run build:lib && npm publish --tag beta",
"publish:latest": "npm publish --tag latest",
"publish:rc": "npm run build:lib && npm publish --tag rc",
"update:latest": "cross-env npm dist-tag add bootstrap-react-logic@%npm_package_version% latest",
"version:alpha": "npm version prerelease --preid=alpha",
"version:beta": "npm version prerelease --preid=beta",
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"version:rc": "npm version prerelease --preid=rc"
},
"peerDependencies": {
"bootstrap": "^5.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@floating-ui/react": "^0.27.4",
"clsx": "^2.1.1",
"cssmix": "^0.1.3",
"date-fns": "^4.1.0",
"motion": "^12.4.4"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/prompt-cli": "^19.7.1",
"@eslint/js": "^9.20.0",
"@types/node": "^22",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"cross-env": "^7.0.3",
"eslint": "^9.20.1",
"eslint-plugin-perfectionist": "^4.9.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"highlight.js": "^11.11.1",
"htmlnano": "^2.1.1",
"husky": "^9.1.7",
"i18next": "^24.2.2",
"lint-staged": "^15.4.3",
"prettier": "3.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.1",
"react-router-dom": "^7.2.0",
"rollup-plugin-visualizer": "^5.14.0",
"terser": "^5.39.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dafengzhen/bootstrap-react-logic.git"
},
"keywords": [
"bootstrap",
"react"
],
"bugs": {
"url": "https://github.com/dafengzhen/bootstrap-react-logic/issues"
},
"homepage": "https://github.com/dafengzhen/bootstrap-react-logic#readme",
"lint-staged": {
"**/*": "npm run prettier"
}
}