@arcteninc/core 0.0.13 → 0.0.15
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 +81 -15
- package/dist/index.cjs +5 -5
- package/dist/index.mjs +2179 -2172
- package/package.json +79 -80
package/package.json
CHANGED
|
@@ -1,80 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@arcteninc/core",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "./dist/index.cjs",
|
|
6
|
-
"module": "./dist/index.mjs",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.mjs",
|
|
12
|
-
"require": "./dist/index.cjs"
|
|
13
|
-
},
|
|
14
|
-
"./server": {
|
|
15
|
-
"types": "./dist/server.d.ts",
|
|
16
|
-
"import": "./dist/server.mjs",
|
|
17
|
-
"require": "./dist/server.cjs"
|
|
18
|
-
},
|
|
19
|
-
"./styles": "./dist/core.css"
|
|
20
|
-
},
|
|
21
|
-
"sideEffects": [
|
|
22
|
-
"*.css",
|
|
23
|
-
"./dist/core.css"
|
|
24
|
-
],
|
|
25
|
-
"files": [
|
|
26
|
-
"dist"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"dev": "vite build --watch",
|
|
30
|
-
"build": "vite build && bunx tsc --emitDeclarationOnly --outDir dist",
|
|
31
|
-
"prepublishOnly": "bun run build"
|
|
32
|
-
},
|
|
33
|
-
"peerDependencies": {
|
|
34
|
-
"
|
|
35
|
-
"react": "^18.0.0 || ^19.0.0"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"@types/
|
|
40
|
-
"@types/
|
|
41
|
-
"@types/react": "^19.2.2",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"react": "^19.2.0",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"@ai-sdk/
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
54
|
-
"@radix-ui/react-
|
|
55
|
-
"@radix-ui/react-
|
|
56
|
-
"@radix-ui/react-
|
|
57
|
-
"@radix-ui/react-
|
|
58
|
-
"@radix-ui/react-
|
|
59
|
-
"@radix-ui/react-
|
|
60
|
-
"@radix-ui/react-
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@arcteninc/core",
|
|
3
|
+
"version": "0.0.15",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./server": {
|
|
15
|
+
"types": "./dist/server.d.ts",
|
|
16
|
+
"import": "./dist/server.mjs",
|
|
17
|
+
"require": "./dist/server.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./styles": "./dist/core.css"
|
|
20
|
+
},
|
|
21
|
+
"sideEffects": [
|
|
22
|
+
"*.css",
|
|
23
|
+
"./dist/core.css"
|
|
24
|
+
],
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"dev": "vite build --watch",
|
|
30
|
+
"build": "vite build && bunx tsc --emitDeclarationOnly --outDir dist",
|
|
31
|
+
"prepublishOnly": "bun run build"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
35
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/bun": "latest",
|
|
39
|
+
"@types/node": "^24.9.2",
|
|
40
|
+
"@types/react": "^19.2.2",
|
|
41
|
+
"@types/react-dom": "^19.2.2",
|
|
42
|
+
"autoprefixer": "^10.4.21",
|
|
43
|
+
"postcss": "^8.5.6",
|
|
44
|
+
"react": "^19.2.0",
|
|
45
|
+
"react-dom": "^19.2.0",
|
|
46
|
+
"typescript": "^5.9.3",
|
|
47
|
+
"vite": "^7.1.12"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@ai-sdk/openai": "^3.0.0-beta.47",
|
|
51
|
+
"@ai-sdk/react": "^3.0.0-beta.92",
|
|
52
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
53
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
54
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
55
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
56
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
57
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
58
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
59
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
60
|
+
"@radix-ui/react-use-controllable-state": "^1.2.2",
|
|
61
|
+
"@tailwindcss/vite": "^4.1.16",
|
|
62
|
+
"@use-gesture/react": "^10.3.1",
|
|
63
|
+
"ai": "^6.0.0-beta.94",
|
|
64
|
+
"class-variance-authority": "^0.7.1",
|
|
65
|
+
"clsx": "^2.1.1",
|
|
66
|
+
"cmdk": "^1.1.1",
|
|
67
|
+
"lucide-react": "^0.552.0",
|
|
68
|
+
"motion": "^12.23.24",
|
|
69
|
+
"nanoid": "^5.1.6",
|
|
70
|
+
"react-resizable-panels": "^3.0.6",
|
|
71
|
+
"rehype-katex": "^7.0.1",
|
|
72
|
+
"shadcn": "^3.5.0",
|
|
73
|
+
"streamdown": "^1.4.0",
|
|
74
|
+
"tailwind-merge": "^3.3.1",
|
|
75
|
+
"tailwindcss": "^4.1.16",
|
|
76
|
+
"tw-animate-css": "^1.4.0",
|
|
77
|
+
"zod": "^3.24.1"
|
|
78
|
+
}
|
|
79
|
+
}
|