-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.79 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
{
"name": "@solidweather/components",
"version": "0.5.1",
"author": {
"name": "Axel H. Karlsson",
"url": "https://axelkarlsson.se"
},
"description": "A neumorphic React toolkit.",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"build": "rm -rf dist/* && vite build && tsc --project tsconfig.json && rm -rf dist/dev",
"server": "vite",
"version:bump:major": "npm version major --git-tag-version false",
"version:bump:minor": "npm version minor --git-tag-version false",
"version:bump:patch": "npm version patch --git-tag-version false"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/solidweather/components.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/components.js",
"require": "./dist/components.umd.cjs"
},
"./style.css": "./dist/index.css"
},
"files": [
"dist/"
],
"devDependencies": {
"@eslint/js": "9.35.0",
"@types/node": "25.9.1",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "9.35.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.5.0",
"jiti": "2.6.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"sass": "1.99.0",
"typescript": "5.9.3",
"typescript-eslint": "8.59.0",
"vite": "8.0.14"
},
"dependencies": {
"bootstrap-icons": "1.13.1"
}
}