-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
81 lines (81 loc) · 2.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "assembler-simulator",
"private": true,
"version": "1.0.0-alpha.39",
"description": "A simulator of 8-bit CPU using the Samphire Microprocessor Simulator instruction set.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --cache --fix",
"lint:ci": "eslint . --cache --cache-location ./node_modules/.cache/eslint/.eslintcache --max-warnings 0",
"test": "run build && jest && vitest run",
"all": "run lint && run test"
},
"dependencies": {
"@codemirror-toolkit/extensions": "0.6.3",
"@codemirror-toolkit/react": "0.7.1",
"@codemirror-toolkit/utils": "0.5.1",
"@codemirror/autocomplete": "6.18.1",
"@codemirror/commands": "6.6.2",
"@codemirror/language": "6.10.3",
"@codemirror/search": "6.5.6",
"@codemirror/state": "6.4.1",
"@codemirror/view": "6.34.1",
"@reduxjs/toolkit": "2.2.7",
"@replit/codemirror-vim": "6.2.1",
"@unocss/reset": "0.63.1",
"ackee-tracker": "patch:ackee-tracker@npm%3A5.1.0#~/.yarn/patches/ackee-tracker-npm-5.1.0-0db5cc0193.patch",
"di-wise": "0.2.7",
"immer": "npm:[email protected]",
"js-base64": "3.7.7",
"mutative": "1.0.11",
"pako": "2.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "patch:rxjs@npm%3A8.0.0-alpha.14#~/.yarn/patches/rxjs-npm-8.0.0-alpha.14-00c47179bc.patch",
"ts-brand": "0.2.0",
"ts-enum-utilx": "0.3.0",
"ts-expect": "1.3.0",
"use-external-store": "0.2.2"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@stylistic/eslint-plugin": "2.8.0",
"@types/ackee-tracker": "5.0.4",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.13",
"@types/node": "22.7.4",
"@types/pako": "2.0.3",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"@unocss/preset-web-fonts": "0.63.1",
"@unocss/preset-wind": "0.63.1",
"@unocss/transformer-directives": "0.63.1",
"@unocss/transformer-variant-group": "0.63.1",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "2.1.1",
"@vitest/ui": "2.1.1",
"eslint": "9.11.1",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "5.1.0-rc-3edc000d-20240926",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.9.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"rollup": "4.22.5",
"ts-jest": "29.2.5",
"ts-toolbelt": "9.6.0",
"typescript": "5.5.4",
"typescript-eslint": "8.7.0",
"unocss": "0.63.1",
"vite": "5.4.8",
"vite-plugin-pwa": "0.20.5",
"vitest": "2.1.1"
},
"resolutions": {
"immer": "npm:mutative-compat@^0.1.0"
},
"packageManager": "[email protected]"
}