-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
62 lines (62 loc) · 1.94 KB
/
package.json
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
{
"name": "wordflow",
"private": false,
"version": "0.1.7",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"build:github": "tsc && vite build --mode github",
"deploy:github": "pnpm run build:github && pnpm gh-pages -m \"Deploy $(git log '--format=format:%H' main -1)\" -d ./dist",
"deploy:vercel": "pnpm run build && cp -r .vercel ./dist/ && vercel ./dist",
"preview": "vite preview"
},
"dependencies": {
"lit": "^3.1.2"
},
"devDependencies": {
"@floating-ui/dom": "^1.6.3",
"@mlc-ai/web-llm": "0.2.32",
"@tiptap/core": "^2.2.6",
"@tiptap/extension-bubble-menu": "^2.2.6",
"@tiptap/extension-document": "^2.2.6",
"@tiptap/extension-highlight": "^2.2.6",
"@tiptap/extension-paragraph": "^2.2.6",
"@tiptap/extension-placeholder": "^2.2.6",
"@tiptap/extension-text": "^2.2.6",
"@tiptap/pm": "^2.2.6",
"@tiptap/starter-kit": "^2.2.6",
"@types/d3-array": "^3.2.1",
"@types/d3-format": "^3.0.4",
"@types/d3-random": "^3.0.3",
"@types/d3-time-format": "^4.0.3",
"@types/diff": "^5.0.9",
"@types/diff-match-patch": "^1.0.36",
"@types/emoji-regex": "^9.2.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@webgpu/types": "^0.1.40",
"@xiaohk/utils": "^0.0.6",
"d3-array": "^3.2.4",
"d3-format": "^3.1.0",
"d3-random": "^3.0.1",
"d3-time-format": "^4.1.0",
"diff": "^5.2.0",
"diff-match-patch": "^1.0.5",
"emoji-regex": "^10.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-wc": "^2.0.4",
"gh-pages": "^6.1.1",
"idb-keyval": "^6.2.1",
"prettier": "^3.2.5",
"tippy.js": "^6.3.7",
"typescript": "^5.4.4",
"uuid": "^9.0.1",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vite-plugin-web-components-hmr": "^0.1.3"
}
}