@karakuri-ui/react 0.1.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/README.md +77 -0
- package/dist/index.d.mts +1796 -0
- package/dist/index.d.ts +1796 -0
- package/dist/index.js +7828 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +7571 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +120 -0
package/package.json
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@karakuri-ui/react",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"sideEffects": [
|
|
6
|
+
"*.css"
|
|
7
|
+
],
|
|
8
|
+
"description": "Enterprise React component library with design token system",
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"module": "./dist/index.mjs",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.mjs",
|
|
16
|
+
"require": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "next dev",
|
|
24
|
+
"dev:clean": "rm -rf .next && next dev",
|
|
25
|
+
"build": "next build",
|
|
26
|
+
"build:clean": "rm -rf .next && next build",
|
|
27
|
+
"build:lib": "tsup",
|
|
28
|
+
"start": "next start",
|
|
29
|
+
"lint": "eslint . --ext .ts,.tsx",
|
|
30
|
+
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
31
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"sync-tokens": "tsx scripts/run-sync.ts",
|
|
34
|
+
"build:cli": "node scripts/build-cli.js",
|
|
35
|
+
"verify:docs": "tsx scripts/verify-docs.ts",
|
|
36
|
+
"prepublishOnly": "npm run verify:docs && npm run build:lib"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@radix-ui/react-accordion": "^1.2.0",
|
|
40
|
+
"@radix-ui/react-alert-dialog": "^1.1.0",
|
|
41
|
+
"@radix-ui/react-avatar": "^1.1.0",
|
|
42
|
+
"@radix-ui/react-checkbox": "^1.1.0",
|
|
43
|
+
"@radix-ui/react-collapsible": "^1.1.0",
|
|
44
|
+
"@radix-ui/react-dialog": "^1.1.0",
|
|
45
|
+
"@radix-ui/react-dropdown-menu": "^2.1.0",
|
|
46
|
+
"@radix-ui/react-navigation-menu": "^1.2.0",
|
|
47
|
+
"@radix-ui/react-popover": "^1.1.0",
|
|
48
|
+
"@radix-ui/react-progress": "^1.1.0",
|
|
49
|
+
"@radix-ui/react-radio-group": "^1.2.0",
|
|
50
|
+
"@radix-ui/react-select": "^2.1.0",
|
|
51
|
+
"@radix-ui/react-separator": "^1.1.0",
|
|
52
|
+
"@radix-ui/react-slider": "^1.2.0",
|
|
53
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
54
|
+
"@radix-ui/react-switch": "^1.1.0",
|
|
55
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
56
|
+
"@radix-ui/react-toast": "^1.2.0",
|
|
57
|
+
"@radix-ui/react-toggle": "^1.1.0",
|
|
58
|
+
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
59
|
+
"@radix-ui/react-tooltip": "^1.1.0",
|
|
60
|
+
"class-variance-authority": "^0.7.0",
|
|
61
|
+
"clsx": "^2.1.0",
|
|
62
|
+
"react-is": "^19.2.4",
|
|
63
|
+
"tailwind-merge": "^2.3.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"@karakuri-ui/tokens": "^0.1.0",
|
|
67
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
68
|
+
"react-dom": "^18.2.0 || ^19.0.0",
|
|
69
|
+
"recharts": "^2.15.0 || ^3.0.0"
|
|
70
|
+
},
|
|
71
|
+
"peerDependenciesMeta": {
|
|
72
|
+
"recharts": {
|
|
73
|
+
"optional": true
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@karakuri-ui/tokens": "file:./tokens",
|
|
78
|
+
"@types/node": "^20.14.0",
|
|
79
|
+
"@types/react": "^18.3.0",
|
|
80
|
+
"@types/react-dom": "^18.3.0",
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
82
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
83
|
+
"autoprefixer": "^10.4.19",
|
|
84
|
+
"cmdk": "^1.1.1",
|
|
85
|
+
"eslint": "^8.57.0",
|
|
86
|
+
"eslint-config-next": "^14.2.0",
|
|
87
|
+
"eslint-config-prettier": "^9.1.0",
|
|
88
|
+
"eslint-plugin-react": "^7.34.0",
|
|
89
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
90
|
+
"lucide-react": "^0.400.0",
|
|
91
|
+
"next": "^14.2.0",
|
|
92
|
+
"postcss": "^8.4.38",
|
|
93
|
+
"prettier": "^3.3.0",
|
|
94
|
+
"react": "^18.3.0",
|
|
95
|
+
"react-dom": "^18.3.0",
|
|
96
|
+
"recharts": "^3.7.0",
|
|
97
|
+
"tailwindcss": "^3.4.4",
|
|
98
|
+
"tailwindcss-animate": "^1.0.7",
|
|
99
|
+
"tsup": "^8.1.0",
|
|
100
|
+
"tsx": "^4.21.0",
|
|
101
|
+
"typescript": "^5.4.0"
|
|
102
|
+
},
|
|
103
|
+
"keywords": [
|
|
104
|
+
"react",
|
|
105
|
+
"components",
|
|
106
|
+
"design-system",
|
|
107
|
+
"ui",
|
|
108
|
+
"tailwindcss",
|
|
109
|
+
"typescript",
|
|
110
|
+
"b2b",
|
|
111
|
+
"saas",
|
|
112
|
+
"ai"
|
|
113
|
+
],
|
|
114
|
+
"author": "Tony",
|
|
115
|
+
"license": "MIT",
|
|
116
|
+
"engines": {
|
|
117
|
+
"node": ">=18"
|
|
118
|
+
},
|
|
119
|
+
"packageManager": "npm@10.9.1+sha512.c89530d37c4baa38afd43e76a077a84b9aa63840b986426584fd5c5a54ab0a0b21bb1595c851042b733784b0b43706d36a494b4d8ae1a086a762cb8d3f95942a"
|
|
120
|
+
}
|