-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.5 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
{
"name": "apple2ts",
"private": true,
"version": "3.3.0",
"homepage": "https://apple2ts.com",
"type": "module",
"overrides": {
"@fortawesome/fontawesome-common-types": "7.1.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"start": "vite --open",
"host": "vite --open --host",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint-fix": "eslint . --fix --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"serve": "node server/server.mjs",
"cli": "node cli/index.mjs",
"test": "jest"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@googleworkspace/drive-picker-element": "^0.6.1",
"buffer": "^6.0.3",
"codemirror": "^6.0.2",
"fflate": "^0.8.2",
"pako": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-joyride": "^2.9.3",
"smplr": "^0.16.3"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@types/audioworklet": "^0.0.83",
"@types/gapi.client.drive-v3": "^0.0.5",
"@types/google.accounts": "^0.0.18",
"@types/google.picker": "^0.0.51",
"@types/jest": "^29.5.14",
"@types/pako": "^2.0.4",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/react-fontawesome": "^1.6.8",
"@types/w3c-web-serial": "^1.0.8",
"@types/wicg-file-system-access": "^2023.10.6",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"@vitejs/plugin-react-swc": "^4.0.1",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vite": "^7.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}