Files
daedalOS/package.json

159 lines
5.3 KiB
JSON
Raw Normal View History

2021-01-02 21:48:42 -08:00
{
2022-01-02 01:13:54 -08:00
"name": "daedalos",
2021-01-02 21:48:42 -08:00
"version": "2.0.0",
2021-12-28 13:29:55 -08:00
"description": "Desktop environment in the browser",
2022-07-23 22:33:40 -07:00
"author": {
"name": "Dustin Brett",
"email": "dustinbrett@gmail.com",
"url": "https://dustinbrett.com"
},
2021-01-16 22:32:07 -08:00
"license": "MIT",
2021-07-17 22:10:46 -07:00
"browserslist": [
2022-03-01 21:02:05 -08:00
"defaults and supports es6 and not ie 11 and >1%"
2021-07-17 22:10:46 -07:00
],
2021-01-02 21:48:42 -08:00
"scripts": {
2023-07-04 21:55:56 -07:00
"build": "yarn build:prebuild && next build",
2022-06-26 12:52:02 -07:00
"build:bundle-analyzer": "yarn build",
2023-11-21 22:00:09 -08:00
"build:fs": "node scripts/fs2json.js --exclude .index --out public/.index/fs.9p.json ./public",
"build:minify": "node scripts/minifyHtml.js && node scripts/minifyJs.js",
2024-02-06 21:48:00 -08:00
"build:prebuild": "node scripts/robots.js && node scripts/rssBuilder.js && node scripts/searchIndex.js && node scripts/preloadIcons.js && node scripts/cacheShortcuts.js && yarn build:fs",
2022-02-04 00:23:32 -08:00
"docker:build": "docker build -t daedalos .",
"docker:run": "docker run -dp 3000:3000 --rm --name daedalos daedalos",
2021-07-17 22:10:46 -07:00
"dev": "next dev",
2023-09-20 23:32:08 -07:00
"dev:ssl": "next dev --experimental-https",
2023-07-13 14:34:57 -07:00
"e2e": "playwright test",
2023-08-13 10:29:04 -07:00
"e2e:ui": "playwright test --ui",
2023-10-26 23:19:22 -07:00
"eslint": "eslint .",
2024-06-04 22:06:59 -07:00
"prepare": "husky",
2021-07-17 22:10:46 -07:00
"prettier": "prettier --write .",
2023-11-23 08:52:57 -08:00
"serve": "serve out",
2021-10-30 21:21:14 -07:00
"stylelint": "stylelint --formatter=verbose **/*.ts*",
2021-01-09 22:12:29 -08:00
"test": "jest",
2024-08-25 22:49:55 -07:00
"unused-exports": "ts-prune --project tsconfig.json --ignore \"\\pages|\\e2e\" --error",
"update": "yarn upgrade-interactive --latest"
2021-01-02 21:48:42 -08:00
},
2021-01-16 22:32:07 -08:00
"lint-staged": {
2021-07-10 21:59:18 -07:00
"*": "prettier --ignore-unknown --write",
2021-10-30 21:21:14 -07:00
"*.{ts,tsx}": "stylelint --fix",
2021-07-17 22:10:46 -07:00
"*.{js,ts,tsx}": "eslint --fix"
2021-01-02 21:48:42 -08:00
},
2024-09-22 08:34:26 -07:00
"resolutions": {
2024-12-19 23:21:50 -08:00
"@emotion/is-prop-valid": "^1.3.1"
2024-09-22 08:34:26 -07:00
},
2021-01-02 22:14:16 -08:00
"dependencies": {
2025-02-07 22:34:59 -08:00
"@ffmpeg/ffmpeg": "^0.12.15",
2025-05-15 22:02:16 -07:00
"@mlc-ai/web-llm": "^0.2.79",
2025-02-14 22:33:56 -08:00
"@monaco-editor/loader": "^1.5.0",
2025-01-15 15:28:24 -08:00
"@panzoom/panzoom": "^4.6.0",
2024-04-18 14:44:01 -07:00
"@prettier/plugin-xml": "^3.4.1",
2021-11-20 23:54:50 -08:00
"@wasmer/wasm-transformer": "^0.12.0",
2022-04-24 21:45:51 -07:00
"ani-cursor": "^0.0.5",
2023-12-10 13:07:20 -08:00
"browserfs": "https://github.com/jvilk/BrowserFS.git#a96aa2d",
2022-06-10 19:28:08 -07:00
"butterchurn-presets": "^3.0.0-beta.4",
2024-11-22 22:05:15 -08:00
"canvas-confetti": "^1.9.3",
2023-12-29 20:23:30 -08:00
"decode-ico": "^0.4.1",
2025-05-23 10:31:02 -07:00
"dompurify": "^3.2.6",
2024-01-28 09:48:59 -08:00
"exif-js": "^2.3.0",
2024-02-07 21:53:49 -08:00
"fflate": "^0.8.2",
2025-05-23 10:31:02 -07:00
"file-type": "^21.0.0",
2024-07-08 22:29:12 -07:00
"fix-webm-duration": "^1.0.6",
2022-04-22 13:32:38 -07:00
"gif.js": "^0.2.0",
2025-05-15 22:02:16 -07:00
"idb": "^8.0.3",
2024-09-10 07:47:49 -07:00
"ini": "^5.0.0",
2025-05-23 10:31:02 -07:00
"isomorphic-git": "^1.30.2",
2024-10-14 15:51:22 -07:00
"libheif-js": "^1.18.2",
2025-04-30 22:35:50 -07:00
"mediainfo.js": "0.3.4",
2023-02-10 21:40:09 -08:00
"minimist": "^1.2.8",
2025-05-28 07:40:46 -07:00
"motion": "^12.15.0",
2025-05-23 10:31:02 -07:00
"multiformats": "^13.3.6",
2024-07-10 23:33:37 -07:00
"music-metadata-browser": "^2.5.11",
2025-05-15 22:02:16 -07:00
"next": "^15.3.2",
2023-10-26 23:19:22 -07:00
"nostr-tools": "^1.17.0",
2023-02-14 23:14:39 -08:00
"opentype.js": "^1.3.4",
2022-06-09 18:44:19 -07:00
"playlist-parser": "^0.0.12",
2025-03-03 22:21:07 -08:00
"prettier": "^3.5.3",
2022-08-30 20:13:33 -07:00
"print-js": "^1.6.0",
2024-09-10 07:47:49 -07:00
"quickjs-emscripten": "^0.31.0",
2025-03-29 14:47:13 -07:00
"react": "^19.1.0",
"react-dom": "^19.1.0",
2025-05-28 07:40:46 -07:00
"react-rnd": "^10.5.2",
2024-10-11 11:46:35 -07:00
"resedit": "^2.0.3",
2022-11-26 19:30:18 -08:00
"rtf.js": "^3.0.9",
2025-05-15 22:02:16 -07:00
"styled-components": "^6.1.18",
2023-12-10 13:07:20 -08:00
"utif": "https://github.com/photopea/UTIF.js",
2023-02-03 16:30:58 -08:00
"wasi-js": "^1.7.3"
2021-01-02 22:59:33 -08:00
},
"devDependencies": {
2023-10-20 16:46:01 -07:00
"7z-wasm": "^1.1.0",
2024-11-13 23:39:43 -08:00
"@axe-core/playwright": "^4.10.1",
2025-05-15 22:02:16 -07:00
"@next/bundle-analyzer": "^15.3.2",
"@next/eslint-plugin-next": "^15.3.2",
2025-05-28 07:40:46 -07:00
"@playwright/test": "^1.52.0",
2024-12-19 23:21:50 -08:00
"@types/canvas-confetti": "^1.9.0",
2025-05-23 10:52:29 -07:00
"@types/dom-chromium-ai": "0.0.6",
2024-11-22 08:49:56 -08:00
"@types/dompurify": "^3.2.0",
2023-11-06 23:03:03 -08:00
"@types/gif.js": "^0.2.5",
2024-06-12 22:22:31 -07:00
"@types/ini": "^4.1.1",
2024-10-22 23:10:23 -07:00
"@types/jest": "^29.5.14",
2023-11-08 20:43:15 -08:00
"@types/lunr": "^2.3.7",
2023-12-10 13:13:40 -08:00
"@types/minimist": "^1.2.5",
2025-05-28 07:40:46 -07:00
"@types/node": "^22.15.23",
2023-11-08 20:43:15 -08:00
"@types/offscreencanvas": "^2019.7.3",
"@types/opentype.js": "^1.3.8",
2025-05-28 07:40:46 -07:00
"@types/react": "^19.1.6",
2025-05-15 22:02:16 -07:00
"@types/react-dom": "^19.1.5",
2023-11-08 20:43:15 -08:00
"@types/ua-parser-js": "^0.7.39",
2024-04-18 14:44:01 -07:00
"@types/video.js": "^7.3.58",
2025-04-05 09:07:13 -07:00
"@types/wicg-file-system-access": "^2023.10.6",
2025-05-28 07:40:46 -07:00
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
2025-05-23 10:31:02 -07:00
"emulators": "^8.3.7",
2023-01-13 21:47:34 -08:00
"emulators-ui": "^0.73.9",
2024-11-13 23:39:43 -08:00
"eruda": "^3.4.1",
2024-02-29 18:57:02 -08:00
"eslint": "^8.57.0",
2021-12-30 23:23:16 -08:00
"eslint-config-airbnb": "^19.0.4",
2025-05-15 22:02:16 -07:00
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.5",
2024-06-04 21:59:48 -07:00
"eslint-plugin-deprecation": "^3.0.0",
2024-10-03 21:53:13 -07:00
"eslint-plugin-import": "^2.31.0",
2025-05-28 07:40:46 -07:00
"eslint-plugin-jest": "^28.11.1",
2024-10-29 10:52:26 -07:00
"eslint-plugin-jsx-a11y": "^6.10.2",
2025-01-11 13:46:04 -08:00
"eslint-plugin-no-relative-import-paths": "^1.6.1",
2025-01-23 23:24:02 -08:00
"eslint-plugin-playwright": "^2.2.0",
2024-11-26 19:26:03 -08:00
"eslint-plugin-promise": "^7.2.1",
2025-04-05 09:07:13 -07:00
"eslint-plugin-react": "^7.37.5",
2025-02-28 19:32:33 -08:00
"eslint-plugin-react-hooks": "^5.2.0",
2025-04-21 23:30:33 -07:00
"eslint-plugin-react-hooks-addons": "^0.5.0",
2024-11-14 22:00:49 -08:00
"eslint-plugin-regexp": "^2.7.0",
2025-02-14 22:33:56 -08:00
"eslint-plugin-sonarjs": "^3.0.2",
2021-10-09 21:51:01 -07:00
"eslint-plugin-sort-keys-fix": "^1.1.2",
2024-10-07 18:52:15 -07:00
"eslint-plugin-typescript-sort-keys": "^3.3.0",
2024-11-19 11:16:26 -08:00
"eslint-plugin-unicorn": "^56.0.1",
2024-09-16 22:38:31 -07:00
"eslint-plugin-unused-imports": "^4.1.4",
2023-04-16 14:10:40 -07:00
"html-minifier-terser": "^7.2.0",
2025-02-14 22:33:56 -08:00
"html-to-image": "^1.11.13",
2024-11-19 11:16:26 -08:00
"husky": "^9.1.7",
2023-09-13 20:52:19 -07:00
"jest": "^29.7.0",
2025-05-28 07:40:46 -07:00
"jest-environment-jsdom": "^30.0.0-beta.3",
"lint-staged": "^16.1.0",
2022-02-18 20:35:25 -08:00
"lunr": "^2.3.9",
2024-12-12 21:33:26 -08:00
"monaco-editor": "^0.52.2",
2025-04-27 21:52:41 -07:00
"pdfjs-dist": "^5.2.133",
2025-05-28 07:40:46 -07:00
"playwright-core": "^1.52.0",
2025-02-22 21:08:45 -08:00
"postcss": "^8.5.3",
2025-01-16 19:44:01 -08:00
"postcss-styled-syntax": "^0.7.1",
2021-10-30 21:21:14 -07:00
"postcss-syntax": "^0.36.2",
2024-10-18 15:32:44 -07:00
"serve": "^14.2.4",
2025-04-27 21:52:41 -07:00
"stylelint": "^16.19.1",
2025-04-09 22:17:22 -07:00
"stylelint-config-standard": "^38.0.0",
2025-04-21 23:30:33 -07:00
"stylelint-order": "^7.0.0",
2025-05-28 07:40:46 -07:00
"terser": "^5.40.0",
2025-05-15 22:02:16 -07:00
"tinymce": "^7.9.0",
2023-01-05 15:33:18 -08:00
"ts-prune": "^0.10.3",
2025-04-05 09:07:13 -07:00
"typescript": "^5.8.3",
2021-11-13 22:26:22 -08:00
"webamp": "^1.5.0",
2022-04-14 20:48:29 -07:00
"xlsx": "^0.18.5",
2023-09-11 19:10:52 -07:00
"xterm": "^5.3.0"
2021-01-02 22:14:16 -08:00
}
2021-01-02 21:48:42 -08:00
}