-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.26 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": "asm-editor",
"version": "0.0.1",
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint ."
},
"dependencies": {
"@battlefieldduck/xterm-svelte": "^2.1.0",
"@cartamd/plugin-code": "^4.0.6",
"@ctrl/tinycolor": "^4.1.0",
"@fontsource/fira-mono": "^5.1.1",
"@specy/mips": "^1.1.7",
"@specy/s68k": "^1.1.5",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/fuzzy-search": "^2.1.5",
"@types/string-similarity": "^4.0.2",
"@types/wicg-file-system-access": "^2023.10.5",
"@xterm/xterm": "^5.5.0",
"carta-md": "^4.6.7",
"clone-deep": "^4.0.1",
"dexie": "^4.0.11",
"fuzzy-search": "^3.2.1",
"isomorphic-dompurify": "^2.21.0",
"lz-string": "^1.5.0",
"marked-gfm-heading-id": "^4.1.1",
"monaco-editor": "^0.52.2",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"s-ago": "^2.2.0",
"sass": "^1.84.0",
"string-similarity": "^4.0.4",
"svelte-exmarkdown": "^4.0.2",
"svelte-icons": "^2.1.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.17.1",
"@types/color": "^4.2.0",
"@types/cookie": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^5.19.9",
"svelte-body": "^2.0.0",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.6",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.4.1"
},
"type": "module"
}