-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
63
64
65
66
67
68
{
"name": "ownly",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"go:wasm": "cd ndn/cmd && cross-env GOOS=js GOARCH=wasm go build -ldflags \"-s -w\" -o ../../public/main.wasm main.go",
"go:js": "cp $(go env GOROOT)/misc/wasm/wasm_exec.js ./public/wasm_exec.js"
},
"dependencies": {
"@dicebear/collection": "^9.2.2",
"@dicebear/core": "^9.2.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@milkdown/crepe": "^7.6.2",
"@milkdown/plugin-collab": "^7.6.2",
"@zip.js/zip.js": "^2.7.57",
"bulma": "^1.0.3",
"dexie": "^4.0.11",
"events": "^3.3.0",
"monaco-editor": "^0.52.2",
"nanoid": "^5.1.2",
"streamsaver": "^2.0.6",
"vue": "^3.5.13",
"vue-pdf-embed": "^2.1.2",
"vue-router": "^4.5.0",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vue3-toastify": "^0.2.8",
"y-monaco": "^0.1.6",
"y-prosemirror": "^1.2.15",
"y-protocols": "^1.0.6",
"yjs": "^13.6.23"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/events": "^3.0.3",
"@types/golang-wasm-exec": "^1.15.2",
"@types/node": "^22.13.1",
"@types/streamsaver": "^2.0.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/tsconfig": "^0.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"jiti": "^2.4.2",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.4",
"sass-loader": "^16.0.4",
"typed-emitter": "^2.1.0",
"typescript": "~5.7.3",
"vite": "^6.0.11",
"vite-plugin-vue-devtools": "^7.7.1",
"vue-tsc": "^2.2.0"
}
}