/ package.json
package.json
 1  {
 2  	"name": "radixverse",
 3  	"version": "0.2.0",
 4  	"license": "MIT",
 5  	"repository": "kuchta/radixverse",
 6  	"homepage": "https://kuchta.github.io/radixverse",
 7  	"author": {
 8  		"name": "Míla Kuchta",
 9  		"email": "mila.kuchta@gmail.com"
10  	},
11  	"type": "module",
12  	"exports": "./src/radixes.ts",
13  	"imports": {
14  		"#/*": "./src/*"
15  	},
16  	"engines": {
17  		"node": ">= v24"
18  	},
19  	"scripts": {
20  		"start": "vite --host --port 10000",
21  		"preview": "vite preview --port 10000",
22  		"check": "tsc",
23  		"lint": "eslint",
24  		"test": "node --test src/**/*.test.ts",
25  		"build": "vite build",
26  		"pre-commit": "pnpm check && pnpm lint && pnpm test && pnpm build"
27  	},
28  	"devDependencies": {
29  		"@eslint/css": "^1.1.0",
30  		"@eslint/js": "^10.0.1",
31  		"@rolldown/plugin-babel": "^0.2.3",
32  		"@stylistic/eslint-plugin": "^5.10.0",
33  		"@tailwindcss/vite": "0.0.0-insiders.f3fdda2",
34  		"@types/node": "^25.6.0",
35  		"@types/react": "^19.2.14",
36  		"@types/react-dom": "^19.2.3",
37  		"@typescript-eslint/parser": "^8.59.1",
38  		"@vitejs/plugin-react": "^6.0.1",
39  		"babel-plugin-react-compiler": "^1.0.0",
40  		"daisyui": "^5.5.19",
41  		"eslint": "^10.2.1",
42  		"eslint-plugin-import": "^2.32.0",
43  		"eslint-plugin-react": "^7.37.5",
44  		"eslint-plugin-react-compiler": "^19.1.0-rc.2",
45  		"eslint-plugin-react-hooks": "^7.1.1",
46  		"globals": "^17.5.0",
47  		"oxfmt": "^0.47.0",
48  		"oxlint": "^1.62.0",
49  		"oxlint-tsgolint": "^0.22.1",
50  		"react": "^19.2.5",
51  		"react-dom": "^19.2.5",
52  		"react-error-boundary": "^6.1.1",
53  		"react-icons": "^5.6.0",
54  		"react-router-dom": "^7.14.2",
55  		"react-textarea-autosize": "^8.5.9",
56  		"tailwind-csstree": "^0.3.1",
57  		"tailwindcss": "^4.2.4",
58  		"typescript": "^6.0.3",
59  		"typescript-eslint": "^8.59.1",
60  		"vite": "^8.0.10",
61  		"vite-plugin-pwa": "^1.2.0",
62  		"zod": "^4.3.6"
63  	},
64  	"overrides": {
65  		"eslint-plugin-react-hooks": {
66  			"zod-validation-error": "3.5.3"
67  		}
68  	}
69  }