nexgui4 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "nexgui4",
3
+ "version": "1.0.0",
4
+ "description": "nexGui4 system for Achaea on the Nexus client.",
5
+ "license": "UNLICENSED",
6
+ "author": "Khaseem",
7
+ "keywords": [
8
+ "achaea",
9
+ "nexus",
10
+ "mud",
11
+ "nexgui"
12
+ ],
13
+ "main": "dist/nexgui4.min.js",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "scripts": {
21
+ "build": "vite build",
22
+ "dev": "vite build --watch",
23
+ "playground": "vite --config vite.playground.config.js",
24
+ "test": "vitest run",
25
+ "test:watch": "vitest",
26
+ "test:coverage": "vitest run --coverage",
27
+ "lint": "eslint src tests"
28
+ },
29
+ "type": "module",
30
+ "dependencies": {
31
+ "@dnd-kit/core": "^6.3.1",
32
+ "@dnd-kit/modifiers": "^9.0.0",
33
+ "@dnd-kit/utilities": "^3.2.2",
34
+ "@emotion/react": "^11.14.0",
35
+ "@emotion/styled": "^11.14.1",
36
+ "@mui/icons-material": "^9.0.1",
37
+ "@mui/material": "^9.0.1",
38
+ "@tanstack/react-table": "^8.21.3",
39
+ "@tanstack/react-virtual": "^3.13.26",
40
+ "immer": "^11.1.8",
41
+ "zod": "^4.4.3",
42
+ "zustand": "^5.0.14"
43
+ },
44
+ "peerDependencies": {
45
+ "nexaction": "1.1.9",
46
+ "nexevent": "1.5.8",
47
+ "nexsight": "^0.5.7",
48
+ "react": "19.1.1",
49
+ "react-dom": "19.1.1"
50
+ },
51
+ "devDependencies": {
52
+ "@testing-library/dom": "^10.4.1",
53
+ "@testing-library/jest-dom": "^6.9.1",
54
+ "@testing-library/react": "^16.3.2",
55
+ "@testing-library/user-event": "^14.6.1",
56
+ "@vitejs/plugin-react": "^6.0.2",
57
+ "@vitest/coverage-v8": "^4.1.7",
58
+ "eslint": "^9.39.4",
59
+ "eslint-plugin-react": "^7.37.5",
60
+ "eslint-plugin-react-hooks": "^7.1.1",
61
+ "jsdom": "^29.1.1",
62
+ "nexaction": "1.1.9",
63
+ "nexevent": "1.5.8",
64
+ "nexsight": "^0.5.7",
65
+ "react": "^19.1.1",
66
+ "react-dom": "^19.1.1",
67
+ "terser": "^5.48.0",
68
+ "vite": "^8.0.14",
69
+ "vitest": "^4.1.7"
70
+ },
71
+ "peerDependenciesMeta": {
72
+ "nexevent": {
73
+ "optional": true
74
+ },
75
+ "nexaction": {
76
+ "optional": true
77
+ },
78
+ "nexsight": {
79
+ "optional": true
80
+ }
81
+ }
82
+ }