@nim-ui/components 0.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/dist/index.d.ts +1679 -0
- package/dist/index.js +2638 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +2953 -0
- package/package.json +84 -0
- package/src/registry/index.json +1061 -0
- package/src/registry/schema.ts +34 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nim-ui/components",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./registry": "./src/registry/index.json",
|
|
14
|
+
"./styles": "./dist/styles.css"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"src/registry"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup && postcss ./src/styles.css -o ./dist/styles.css",
|
|
22
|
+
"dev": "tsup --watch",
|
|
23
|
+
"type-check": "tsc --noEmit",
|
|
24
|
+
"lint": "eslint src",
|
|
25
|
+
"lint:fix": "eslint src --fix",
|
|
26
|
+
"clean": "rm -rf dist",
|
|
27
|
+
"test": "vitest",
|
|
28
|
+
"test:ui": "vitest --ui",
|
|
29
|
+
"test:watch": "vitest --watch",
|
|
30
|
+
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"test:run": "vitest run"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": "^19.2.0",
|
|
35
|
+
"react-dom": "^19.2.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
39
|
+
"@radix-ui/react-alert-dialog": "^1.1.2",
|
|
40
|
+
"@radix-ui/react-avatar": "^1.1.2",
|
|
41
|
+
"@radix-ui/react-checkbox": "^1.1.2",
|
|
42
|
+
"@radix-ui/react-dialog": "^1.1.2",
|
|
43
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
44
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
45
|
+
"@radix-ui/react-radio-group": "^1.2.2",
|
|
46
|
+
"@radix-ui/react-select": "^2.1.5",
|
|
47
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
48
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
49
|
+
"@radix-ui/react-tabs": "^1.1.2",
|
|
50
|
+
"@radix-ui/react-toast": "^1.2.15",
|
|
51
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
52
|
+
"class-variance-authority": "^0.7.1",
|
|
53
|
+
"clsx": "^2.1.1"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@eslint/js": "^9.39.2",
|
|
57
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
58
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
59
|
+
"@testing-library/react": "^16.3.2",
|
|
60
|
+
"@testing-library/user-event": "^14.6.1",
|
|
61
|
+
"@nim-ui/tailwind-config": "workspace:*",
|
|
62
|
+
"@types/react": "^19.0.10",
|
|
63
|
+
"@types/react-dom": "^19.0.2",
|
|
64
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
65
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
66
|
+
"@vitest/ui": "^2.1.9",
|
|
67
|
+
"autoprefixer": "^10.4.20",
|
|
68
|
+
"eslint": "^9.39.2",
|
|
69
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
70
|
+
"eslint-plugin-react-refresh": "^0.5.0",
|
|
71
|
+
"happy-dom": "^20.5.0",
|
|
72
|
+
"jsdom": "^25.0.1",
|
|
73
|
+
"postcss": "^8.4.49",
|
|
74
|
+
"postcss-cli": "^11.0.1",
|
|
75
|
+
"react": "^19.0.0",
|
|
76
|
+
"react-dom": "^19.0.0",
|
|
77
|
+
"tailwindcss": "^4.1.0",
|
|
78
|
+
"tsup": "^8.3.5",
|
|
79
|
+
"typescript": "^5.9.3",
|
|
80
|
+
"typescript-eslint": "^8.55.0",
|
|
81
|
+
"vite": "^7.3.1",
|
|
82
|
+
"vitest": "^2.1.9"
|
|
83
|
+
}
|
|
84
|
+
}
|