@choice-ui/react 1.3.11 → 1.3.13
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 +19 -32
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@choice-ui/react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.13",
|
|
4
4
|
"description": "A desktop-first React UI component library built for professional desktop applications with comprehensive documentation",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"source": "./app/index.ts",
|
|
8
8
|
"main": "./dist/cjs/index.cjs",
|
|
9
9
|
"module": "./dist/esm/index.js",
|
|
10
|
-
"types": "./
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
13
|
"README.md",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"types": "./
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
19
|
"import": "./dist/esm/index.js",
|
|
20
20
|
"require": "./dist/cjs/index.cjs",
|
|
21
21
|
"default": "./dist/esm/index.js"
|
|
@@ -25,37 +25,11 @@
|
|
|
25
25
|
"./llms.txt": "./dist/llms.txt"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
|
-
"access": "public"
|
|
29
|
-
"types": "./dist/index.d.ts",
|
|
30
|
-
"exports": {
|
|
31
|
-
".": {
|
|
32
|
-
"types": "./dist/index.d.ts",
|
|
33
|
-
"import": "./dist/esm/index.js",
|
|
34
|
-
"require": "./dist/cjs/index.cjs",
|
|
35
|
-
"default": "./dist/esm/index.js"
|
|
36
|
-
},
|
|
37
|
-
"./styles/*": "./dist/styles/*",
|
|
38
|
-
"./tailwind.css": "./dist/tailwind.css",
|
|
39
|
-
"./llms.txt": "./dist/llms.txt"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "pnpm run clean && vite build && tsc --emitDeclarationOnly",
|
|
44
|
-
"build:watch": "vite build --watch",
|
|
45
|
-
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
46
|
-
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
|
|
47
|
-
"lint:types": "tsc",
|
|
48
|
-
"clean": "rimraf dist",
|
|
49
|
-
"prepublishOnly": "pnpm run build",
|
|
50
|
-
"plop": "pnpm dlx plop",
|
|
51
|
-
"test": "jest",
|
|
52
|
-
"test:watch": "jest --watch",
|
|
53
|
-
"test:coverage": "jest --coverage",
|
|
54
|
-
"madge": "npx madge --circular --extensions ts app/"
|
|
28
|
+
"access": "public"
|
|
55
29
|
},
|
|
56
30
|
"dependencies": {
|
|
57
31
|
"@choiceform/icons-react": "^1.3.8",
|
|
58
|
-
"@choice-ui/design-tokens": "
|
|
32
|
+
"@choice-ui/design-tokens": "^0.2.12",
|
|
59
33
|
"@date-fns/tz": "^1.2.0",
|
|
60
34
|
"@floating-ui/react": "0.27.15",
|
|
61
35
|
"@legendapp/state": "v3.0.0-beta.26",
|
|
@@ -135,5 +109,18 @@
|
|
|
135
109
|
"peerDependencies": {
|
|
136
110
|
"react": "18.2.0",
|
|
137
111
|
"react-dom": "18.2.0"
|
|
112
|
+
},
|
|
113
|
+
"scripts": {
|
|
114
|
+
"build": "pnpm run clean && vite build && tsc --emitDeclarationOnly",
|
|
115
|
+
"build:watch": "vite build --watch",
|
|
116
|
+
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
117
|
+
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
|
|
118
|
+
"lint:types": "tsc",
|
|
119
|
+
"clean": "rimraf dist",
|
|
120
|
+
"plop": "pnpm dlx plop",
|
|
121
|
+
"test": "jest",
|
|
122
|
+
"test:watch": "jest --watch",
|
|
123
|
+
"test:coverage": "jest --coverage",
|
|
124
|
+
"madge": "npx madge --circular --extensions ts app/"
|
|
138
125
|
}
|
|
139
|
-
}
|
|
126
|
+
}
|