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": {
|
2022-06-26 12:52:02 -07:00
|
|
|
"build": "yarn build:prebuild && next build",
|
|
|
|
|
"build:bundle-analyzer": "yarn build",
|
2022-03-27 01:18:01 -07:00
|
|
|
"build:fs": "node scripts/fs2json.js --exclude .index --out public/.index/fs.9p.json ./public && node scripts/preloadIcons.js",
|
2022-03-07 20:24:31 -08:00
|
|
|
"build:html": "node scripts/minifyHtml.js",
|
2022-07-27 20:25:26 -07:00
|
|
|
"build:js": "node scripts/minifyJs.js",
|
2022-06-26 12:52:02 -07:00
|
|
|
"build:prebuild": "yarn build:fs && yarn build:search",
|
2021-12-30 23:30:37 -08:00
|
|
|
"build:robots": "node scripts/robots.js",
|
2022-02-18 22:57:23 -08:00
|
|
|
"build:search": "node scripts/searchIndex.js",
|
2022-07-27 20:25:26 -07:00
|
|
|
"deploy": "yarn build:robots && next export && yarn build:html && yarn build:js",
|
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",
|
2021-10-30 21:21:14 -07:00
|
|
|
"eslint": "eslint --report-unused-disable-directives .",
|
2021-04-10 22:31:47 -07:00
|
|
|
"export": "next export",
|
2021-07-17 22:10:46 -07:00
|
|
|
"prepare": "husky install",
|
|
|
|
|
"prettier": "prettier --write .",
|
2022-06-26 12:52:02 -07:00
|
|
|
"start": "next build && next start",
|
2021-10-30 21:21:14 -07:00
|
|
|
"stylelint": "stylelint --formatter=verbose **/*.ts*",
|
2021-01-09 22:12:29 -08:00
|
|
|
"test": "jest",
|
2022-05-09 23:34:15 -07:00
|
|
|
"test:watch": "jest --watch",
|
2023-01-05 15:33:18 -08:00
|
|
|
"unused-exports": "ts-prune -p tsconfig.json"
|
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
|
|
|
},
|
2021-06-05 22:00:39 -07:00
|
|
|
"resolutions": {
|
|
|
|
|
"styled-components": "^5"
|
|
|
|
|
},
|
2021-01-02 22:14:16 -08:00
|
|
|
"dependencies": {
|
2022-09-27 19:17:21 -07:00
|
|
|
"@monaco-editor/react": "^4.4.6",
|
2022-09-07 21:54:22 -07:00
|
|
|
"@panzoom/panzoom": "^4.5.1",
|
2022-09-10 13:26:23 -07:00
|
|
|
"@prettier/plugin-xml": "^2.2.0",
|
2021-11-20 23:54:50 -08:00
|
|
|
"@wasmer/wasm-terminal": "^0.12.0",
|
|
|
|
|
"@wasmer/wasm-transformer": "^0.12.0",
|
2022-04-24 21:45:51 -07:00
|
|
|
"ani-cursor": "^0.0.5",
|
2022-06-10 19:28:08 -07:00
|
|
|
"butterchurn-presets": "^3.0.0-beta.4",
|
2022-10-01 20:29:37 -07:00
|
|
|
"fflate": "^0.7.4",
|
2022-08-26 18:51:48 -07:00
|
|
|
"file-type": "^18.0.0",
|
2023-01-07 09:17:53 -08:00
|
|
|
"framer-motion": "^8.2.4",
|
2022-04-22 13:32:38 -07:00
|
|
|
"gif.js": "^0.2.0",
|
2022-11-07 20:01:35 -08:00
|
|
|
"idb": "^7.1.1",
|
2022-08-22 12:21:09 -07:00
|
|
|
"ini": "^3.0.1",
|
2022-09-03 12:55:38 -07:00
|
|
|
"isomorphic-git": "^1.21.0",
|
2023-01-09 20:19:22 -08:00
|
|
|
"minimist": "^1.2.7",
|
2023-01-02 19:40:48 -08:00
|
|
|
"multiformats": "^11.0.0",
|
2022-09-10 08:50:49 -07:00
|
|
|
"music-metadata-browser": "^2.5.9",
|
2022-12-24 15:52:21 -08:00
|
|
|
"next": "^13.1.1",
|
2022-06-09 18:44:19 -07:00
|
|
|
"playlist-parser": "^0.0.12",
|
2023-01-07 09:17:53 -08:00
|
|
|
"prettier": "2.8.2",
|
2022-08-30 20:13:33 -07:00
|
|
|
"print-js": "^1.6.0",
|
2022-06-19 19:42:52 -07:00
|
|
|
"react": "^18.2.0",
|
|
|
|
|
"react-dom": "^18.2.0",
|
2022-12-24 15:52:21 -08:00
|
|
|
"react-rnd": "^10.4.1",
|
2022-12-10 13:13:16 -08:00
|
|
|
"resedit": "^1.6.1",
|
2022-11-26 19:30:18 -08:00
|
|
|
"rtf.js": "^3.0.9",
|
2022-09-27 19:17:21 -07:00
|
|
|
"styled-components": "^5.3.6",
|
2022-11-23 16:16:54 -08:00
|
|
|
"utif": "https://github.com/photopea/UTIF.js",
|
|
|
|
|
"wasi-js": "^1.7.2"
|
2021-01-02 22:59:33 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-08-30 21:44:50 -07:00
|
|
|
"7z-wasm": "^1.0.1",
|
2022-12-24 15:52:21 -08:00
|
|
|
"@next/bundle-analyzer": "^13.1.1",
|
|
|
|
|
"@next/eslint-plugin-next": "^13.1.1",
|
2022-05-05 20:10:16 -07:00
|
|
|
"@stylelint/postcss-css-in-js": "^0.38.0",
|
2022-04-22 13:32:38 -07:00
|
|
|
"@types/gif.js": "^0.2.2",
|
2021-10-09 21:32:38 -07:00
|
|
|
"@types/ini": "^1.3.31",
|
2023-01-02 19:40:48 -08:00
|
|
|
"@types/jest": "^29.2.5",
|
2022-02-18 20:35:25 -08:00
|
|
|
"@types/lunr": "^2.3.4",
|
2022-12-27 23:38:09 -08:00
|
|
|
"@types/node": "^18.11.18",
|
2022-05-26 22:10:46 -07:00
|
|
|
"@types/offscreencanvas": "^2019.7.0",
|
2022-12-03 19:39:42 -08:00
|
|
|
"@types/react": "^18.0.26",
|
2022-08-10 20:17:12 -07:00
|
|
|
"@types/styled-components": "^5.1.26",
|
2022-12-03 19:39:42 -08:00
|
|
|
"@types/video.js": "^7.3.50",
|
2022-02-16 22:35:30 -08:00
|
|
|
"@types/wicg-file-system-access": "^2020.9.5",
|
2023-01-02 19:40:48 -08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.48.0",
|
2021-07-17 22:39:56 -07:00
|
|
|
"browserfs": "https://github.com/jvilk/BrowserFS.git",
|
2022-10-14 20:24:24 -07:00
|
|
|
"emulators": "^0.73.8",
|
2022-07-21 00:18:20 -07:00
|
|
|
"emulators-ui": "^0.73.7",
|
2022-12-24 15:52:21 -08:00
|
|
|
"eruda": "^2.10.0",
|
2023-01-02 19:40:48 -08:00
|
|
|
"eslint": "^8.31.0",
|
2021-12-30 23:23:16 -08:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2022-12-24 15:52:21 -08:00
|
|
|
"eslint-config-next": "^13.1.1",
|
2023-01-02 19:40:48 -08:00
|
|
|
"eslint-config-prettier": "^8.6.0",
|
2022-04-14 23:43:07 -07:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2023-01-07 09:17:53 -08:00
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2022-11-10 20:19:08 -08:00
|
|
|
"eslint-plugin-jest-dom": "^4.0.3",
|
2022-07-04 14:25:53 -07:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-06-19 19:42:52 -07:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2022-09-03 12:55:38 -07:00
|
|
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
2022-12-05 20:58:52 -08:00
|
|
|
"eslint-plugin-sonarjs": "^0.17.0",
|
2021-10-09 21:51:01 -07:00
|
|
|
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
2022-03-31 14:00:34 -07:00
|
|
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
2022-12-14 13:22:58 -08:00
|
|
|
"eslint-plugin-unicorn": "^45.0.2",
|
2022-03-31 14:00:34 -07:00
|
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
2022-11-21 22:18:40 -08:00
|
|
|
"html-minifier-terser": "^7.1.0",
|
2023-01-02 19:40:48 -08:00
|
|
|
"html-to-image": "^1.11.4",
|
2023-01-03 19:15:35 -08:00
|
|
|
"husky": "^8.0.3",
|
2022-11-10 20:19:08 -08:00
|
|
|
"jest": "^29.3.1",
|
|
|
|
|
"jest-environment-jsdom": "^29.3.1",
|
2022-12-05 20:58:52 -08:00
|
|
|
"lint-staged": "^13.1.0",
|
2022-02-18 20:35:25 -08:00
|
|
|
"lunr": "^2.3.9",
|
2022-10-18 20:30:30 -07:00
|
|
|
"monaco-editor": "^0.34.1",
|
2023-01-02 19:40:48 -08:00
|
|
|
"pdfjs-dist": "^3.2.146",
|
2021-10-30 21:21:14 -07:00
|
|
|
"postcss-syntax": "^0.36.2",
|
2023-01-02 19:40:48 -08:00
|
|
|
"stylelint": "^14.16.1",
|
2022-11-10 20:19:08 -08:00
|
|
|
"stylelint-config-prettier": "^9.0.4",
|
2022-08-10 20:17:12 -07:00
|
|
|
"stylelint-config-recommended": "^9.0.0",
|
2021-10-30 21:21:14 -07:00
|
|
|
"stylelint-config-sass-guidelines": "^9.0.1",
|
2021-01-09 23:40:17 -08:00
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
2022-12-03 19:39:42 -08:00
|
|
|
"terser": "^5.16.1",
|
2022-12-05 20:58:52 -08:00
|
|
|
"tinymce": "^6.3.1",
|
2023-01-05 15:33:18 -08:00
|
|
|
"ts-prune": "^0.10.3",
|
2022-12-09 17:53:04 -08:00
|
|
|
"typescript": "^4.9.4",
|
2021-11-13 22:26:22 -08:00
|
|
|
"webamp": "^1.5.0",
|
2022-04-14 20:48:29 -07:00
|
|
|
"xlsx": "^0.18.5",
|
2022-12-24 15:52:21 -08:00
|
|
|
"xterm": "^5.1.0"
|
2021-01-02 22:14:16 -08:00
|
|
|
}
|
2021-01-02 21:48:42 -08:00
|
|
|
}
|