-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.17 KB
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
{
"version": "0.41.0-beta.0",
"author": {
"email": "joep@ontola.io",
"name": "Joep Meindertsma"
},
"dependencies": {
"@bugsnag/core": "^7.25.0",
"@bugsnag/js": "^7.25.0",
"@bugsnag/plugin-react": "^7.25.0",
"@dagrejs/dagre": "^1.1.4",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emoji-mart/react": "^1.1.1",
"@emotion/is-prop-valid": "^1.3.1",
"@modelcontextprotocol/sdk": "^1.13.3",
"@oddbird/css-anchor-positioning": "^0.6.1",
"@openrouter/ai-sdk-provider": "^0.4.3",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.1",
"@tanstack/react-router": "^1.95.1",
"@tiptap/extension-file-handler": "^2.25.0",
"@tiptap/extension-image": "^2.11.7",
"@tiptap/extension-link": "^2.11.7",
"@tiptap/extension-mention": "^2.11.7",
"@tiptap/extension-placeholder": "^2.11.7",
"@tiptap/extension-typography": "^2.11.7",
"@tiptap/pm": "^2.11.7",
"@tiptap/react": "^2.11.7",
"@tiptap/starter-kit": "^2.11.7",
"@tiptap/suggestion": "^2.11.7",
"@tomic/react": "workspace:*",
"ai": "^4.3.16",
"downshift": "^9.0.9",
"emoji-mart": "^5.6.0",
"ollama-ai-provider": "^1.2.0",
"polished": "^4.3.1",
"prismjs": "^1.29.0",
"query-string": "^7.1.3",
"quick-score": "^0.2.0",
"react": "^19.0.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.0.0",
"react-dropzone": "^11.7.1",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^3.4.7",
"react-icons": "^4.12.0",
"react-intersection-observer": "^9.13.1",
"react-is": "^19.0.0",
"react-markdown": "^9.0.3",
"react-pdf": "^9.1.1",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.0",
"styled-components": "^6.1.13",
"stylis": "4.3.0",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.10",
"zod": "^3.24.2"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.95.1",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "19.1.0-rc.2",
"babel-plugin-styled-components": "^2.1.4",
"csstype": "^3.1.3",
"gh-pages": "^5.0.0",
"lint-staged": "^10.5.4",
"types-wm": "^1.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-prismjs": "^0.0.11",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-webfont-dl": "^3.9.5"
},
"type": "module",
"homepage": "https://atomicdata.dev/",
"husky": {
"hooks": {
"pre-push": "pnpm lint && pnpm test"
}
},
"license": "MIT",
"name": "@tomic/data-browser",
"private": true,
"repository": {
"url": "https://github.com/atomicdata-dev/atomic-data-browser/"
},
"scripts": {
"build": "vite build",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"preview": "vite preview",
"start": "vite",
"test": "vitest run",
"typecheck": "pnpm exec tsc --noEmit"
}
}