@spaceandtimelabs/makeinfinite-ui 0.72.2-beta.0 → 0.72.2-beta.2
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 +108 -106
package/package.json
CHANGED
|
@@ -1,108 +1,110 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
2
|
+
"name": "@spaceandtimelabs/makeinfinite-ui",
|
|
3
|
+
"author": "aw-sxt",
|
|
4
|
+
"private": false,
|
|
5
|
+
"version": "0.72.2-beta.2",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"development": "./lib/index.ts",
|
|
10
|
+
"default": {
|
|
11
|
+
"import": "./dist/makeinfinite-ui.es.js",
|
|
12
|
+
"require": "./dist/makeinfinite-ui.umd.js"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"main": "dist/makeinfinite-ui.umd.js",
|
|
17
|
+
"module": "dist/makeinfinite-ui.es.js",
|
|
18
|
+
"types": "dist/types/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/spaceandtimelabs/makeinfinite-ui.git"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite",
|
|
28
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
29
|
+
"build": "vite build && yarn build:types",
|
|
30
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
31
|
+
"lint:check": "eslint --quiet \"**/*.{ts,tsx}\"",
|
|
32
|
+
"lint:fix": "eslint --fix \"**/*.{ts,tsx}\"",
|
|
33
|
+
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
|
|
34
|
+
"format:fix": "prettier --write \"**/*.{ts,tsx}\"",
|
|
35
|
+
"prepublishOnly": "yarn run build"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@fontsource/geist-sans": "^5.1.0",
|
|
39
|
+
"@hookform/resolvers": "^3.3.4",
|
|
40
|
+
"@isomorphic-git/lightning-fs": "^4.6.0",
|
|
41
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
42
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
43
|
+
"@radix-ui/react-toggle-group": "^1.1.2",
|
|
44
|
+
"@tanstack/react-table": "^8.21.2",
|
|
45
|
+
"@tanstack/react-virtual": "^3.13.0",
|
|
46
|
+
"@zenfs/core": "2.1.0",
|
|
47
|
+
"buffer": "^6.0.3",
|
|
48
|
+
"class-variance-authority": "^0.7.1",
|
|
49
|
+
"clsx": "^2.1.1",
|
|
50
|
+
"cmdk": "^0.2.1",
|
|
51
|
+
"date-fns": "^3.3.1",
|
|
52
|
+
"echarts": "^5.3.3",
|
|
53
|
+
"echarts-for-react": "3.0.2",
|
|
54
|
+
"embla-carousel-react": "^8.5.2",
|
|
55
|
+
"fflate": "^0.8.2",
|
|
56
|
+
"ignore": "^7.0.3",
|
|
57
|
+
"isomorphic-git": "^1.27.1",
|
|
58
|
+
"lucide-react": "^0.503.0",
|
|
59
|
+
"next-themes": "^0.4.4",
|
|
60
|
+
"path-browserify": "^1.0.1",
|
|
61
|
+
"radix-ui": "^1.1.3",
|
|
62
|
+
"react-day-picker": "^8.10.0",
|
|
63
|
+
"react-grid-layout": "^1.5.0",
|
|
64
|
+
"react-hook-form": "^7.50.1",
|
|
65
|
+
"react-resizable-panels": "^2.1.7",
|
|
66
|
+
"recharts": "^2.15.1",
|
|
67
|
+
"sonner": "^2.0.0",
|
|
68
|
+
"styled-components": "^5.3.0",
|
|
69
|
+
"tailwind-merge": "^3.0.1",
|
|
70
|
+
"tailwindcss-animate": "^1.0.7",
|
|
71
|
+
"uuid": "^10.0.0",
|
|
72
|
+
"vaul": "^1.1.2",
|
|
73
|
+
"whatwg-fetch": "^3.6.20",
|
|
74
|
+
"zod": "^3.22.4"
|
|
75
|
+
},
|
|
76
|
+
"peerDependencies": {
|
|
77
|
+
"@babel/standalone": "^7.26.2",
|
|
78
|
+
"react": "^17.0.2",
|
|
79
|
+
"react-dom": "^17.0.2"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
83
|
+
"@babel/standalone": "^7.26.2",
|
|
84
|
+
"@types/babel__standalone": "^7.1.9",
|
|
85
|
+
"@types/node": "^18.9.0",
|
|
86
|
+
"@types/react": "^17.0.2",
|
|
87
|
+
"@types/react-dom": "^17.0.2",
|
|
88
|
+
"@types/react-grid-layout": "^1.3.5",
|
|
89
|
+
"@types/styled-components": "^5.1.34",
|
|
90
|
+
"@types/uuid": "^10.0.0",
|
|
91
|
+
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
92
|
+
"@typescript-eslint/parser": "^5.0.0",
|
|
93
|
+
"@vitejs/plugin-react": "^4.3.2",
|
|
94
|
+
"chokidar-cli": "^3.0.0",
|
|
95
|
+
"eslint": "^8.2.0",
|
|
96
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
97
|
+
"eslint-plugin-react-refresh": "^0.4.12",
|
|
98
|
+
"prettier": "^2.6.2",
|
|
99
|
+
"react": "^17.0.2",
|
|
100
|
+
"react-dom": "^17.0.2",
|
|
101
|
+
"typescript": "^5.5.3",
|
|
102
|
+
"vite": "^4.5.0"
|
|
103
|
+
},
|
|
104
|
+
"resolutions": {
|
|
105
|
+
"elliptic": "6.5.7",
|
|
106
|
+
"ws": "8.17.1"
|
|
107
|
+
},
|
|
108
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
|
|
109
|
+
"gitHead": "606bf3e13620081dd9df3d7861a408b59e7c9874"
|
|
108
110
|
}
|