-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "ephemera",
"version": "2.0.0",
"description": "A browser-based operating system with virtual file system, app development platform, and AI integration",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint js/ && npm run typecheck",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:smoke": "vitest run tests/smoke-critical-flows.test.js",
"test:perf": "vitest run tests/filesystem-performance.test.js",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"bundle:size": "node scripts/check-bundle-size.mjs",
"bundle:size:strict": "node scripts/check-bundle-size.mjs --strict"
},
"keywords": [
"browser-os",
"web-desktop",
"virtual-filesystem",
"ephemera"
],
"author": "Mounir IDRASSI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ephemera-os/ephemera.git"
},
"bugs": {
"url": "https://github.com/ephemera-os/ephemera/issues"
},
"homepage": "https://github.com/ephemera-os/ephemera",
"dependencies": {
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.12.1",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.14",
"@isomorphic-git/lightning-fs": "^4.6.2",
"@sentry/browser": "^7.99.0",
"codemirror": "^5.65.21",
"dompurify": "^3.0.9",
"isomorphic-git": "^1.37.1",
"pdfjs-dist": "^5.4.624",
"y-protocols": "^1.0.7",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.29"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"typescript": "^5.9.3",
"vite": "^5.0.12",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}