Files
daedalOS/package.json

123 lines
4.2 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-03-31 19:19:45 -07:00
"author": "Dustin Brett <dustinbrett@gmail.com> (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-03-20 19:04:03 -07:00
"build": "yarn build:fs && yarn build:search && next 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",
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-03-20 19:04:03 -07:00
"deploy": "yarn build:robots && next export && yarn build:html",
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 .",
2021-01-02 22:14:16 -08:00
"start": "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",
"unused-exports": "ts-unused-exports tsconfig.json --excludePathsFromReport=pages"
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-05-15 19:15:46 -07:00
"@monaco-editor/react": "^4.4.5",
2022-05-31 15:15:43 -07:00
"@panzoom/panzoom": "^4.5.0",
2021-12-18 22:44:44 -08:00
"@wasmer/wasi": "0.12.0",
2021-11-20 23:54:50 -08:00
"@wasmer/wasm-terminal": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
2022-04-24 21:45:51 -07:00
"ani-cursor": "^0.0.5",
2022-01-19 22:57:31 -08:00
"fflate": "^0.7.3",
2022-06-04 20:52:37 -07:00
"file-type": "^17.1.2",
"framer-motion": "^6.3.10",
2022-04-22 13:32:38 -07:00
"gif.js": "^0.2.0",
2021-10-09 21:32:38 -07:00
"html-to-image": "^1.9.0",
2022-02-15 12:53:07 -08:00
"idb-keyval": "^6.1.0",
2022-04-14 23:43:07 -07:00
"ini": "^3.0.0",
2022-06-08 21:17:53 -07:00
"iptv-playlist-parser": "^0.11.0",
2022-06-04 20:52:37 -07:00
"isomorphic-git": "^1.17.3",
2022-04-01 20:58:08 -07:00
"music-metadata-browser": "^2.5.6",
2022-05-05 20:10:16 -07:00
"next": "^12.1.6",
2022-04-04 20:02:21 -07:00
"prettier": "2.6.2",
2022-04-27 22:58:59 -07:00
"react": "^18.1.0",
"react-dom": "^18.1.0",
2022-04-18 22:17:24 -07:00
"react-rnd": "^10.3.7",
"resedit": "^1.6.0",
2022-03-24 20:50:01 -07:00
"styled-components": "^5.3.5"
2021-01-02 22:59:33 -08:00
},
"devDependencies": {
2022-04-30 22:40:21 -07:00
"7z-wasm": "^1.0.0-beta.5",
2022-05-05 20:10:16 -07:00
"@next/bundle-analyzer": "^12.1.6",
"@next/eslint-plugin-next": "^12.1.6",
"@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",
2022-06-04 20:52:37 -07:00
"@types/jest": "^28.1.1",
2022-02-18 20:35:25 -08:00
"@types/lunr": "^2.3.4",
2022-06-07 20:12:28 -07:00
"@types/node": "^17.0.41",
2022-05-26 22:10:46 -07:00
"@types/offscreencanvas": "^2019.7.0",
2022-06-07 20:12:28 -07:00
"@types/react": "^18.0.12",
2022-04-14 23:43:07 -07:00
"@types/styled-components": "^5.1.25",
2022-05-21 19:07:32 -07:00
"@types/video.js": "^7.3.40",
2022-02-16 22:35:30 -08:00
"@types/wicg-file-system-access": "^2020.9.5",
2022-06-07 20:12:28 -07:00
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
2021-07-17 22:39:56 -07:00
"browserfs": "https://github.com/jvilk/BrowserFS.git",
2022-04-01 23:32:45 -07:00
"byuu": "^0.16.0",
2022-06-04 20:52:37 -07:00
"emulators": "^0.73.6",
"emulators-ui": "^0.73.5",
2021-11-27 23:05:46 -08:00
"eruda": "https://github.com/liriliri/eruda",
2022-06-04 20:52:37 -07:00
"eslint": "^8.17.0",
2021-12-30 23:23:16 -08:00
"eslint-config-airbnb": "^19.0.4",
2022-05-05 20:10:16 -07:00
"eslint-config-next": "^12.1.6",
2022-03-02 20:58:32 -08:00
"eslint-config-prettier": "^8.5.0",
2022-04-14 23:43:07 -07:00
"eslint-plugin-import": "^2.26.0",
2022-06-07 20:12:28 -07:00
"eslint-plugin-jest": "^26.5.3",
2022-05-21 19:07:32 -07:00
"eslint-plugin-jest-dom": "^4.0.2",
2021-09-18 21:09:21 -07:00
"eslint-plugin-prettier": "^4.0.0",
2022-04-27 22:58:59 -07:00
"eslint-plugin-react-hooks": "^4.5.0",
2021-01-09 21:25:57 -08:00
"eslint-plugin-simple-import-sort": "^7.0.0",
2022-03-29 12:58:23 -07:00
"eslint-plugin-sonarjs": "^0.13.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-04-01 09:49:50 -07:00
"eslint-plugin-unicorn": "^42.0.0",
2022-03-31 14:00:34 -07:00
"eslint-plugin-unused-imports": "^2.0.0",
2022-03-09 21:36:00 -08:00
"html-minifier-terser": "^7.0.0-alpha.2",
2022-05-15 19:15:46 -07:00
"husky": "^8.0.1",
2022-06-07 20:12:28 -07:00
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
2022-06-04 20:52:37 -07:00
"lint-staged": "^13.0.0",
2022-02-18 20:35:25 -08:00
"lunr": "^2.3.9",
2022-03-13 21:30:17 -07:00
"monaco-editor": "^0.33.0",
2022-05-15 19:15:46 -07:00
"pdfjs-dist": "^2.14.305",
2021-10-30 21:21:14 -07:00
"postcss-syntax": "^0.36.2",
2022-05-25 08:40:51 -07:00
"stylelint": "^14.8.5",
2021-10-23 21:33:28 -07:00
"stylelint-config-prettier": "^9.0.3",
2022-03-05 23:11:19 -08:00
"stylelint-config-recommended": "^7.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-05-24 22:33:14 -07:00
"tinymce": "^6.0.3",
2022-05-09 23:34:15 -07:00
"ts-unused-exports": "^8.0.0",
2022-06-04 20:52:37 -07:00
"typescript": "^4.7.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",
2022-04-27 22:58:59 -07:00
"xterm": "^4.18.0"
2021-01-02 22:14:16 -08:00
}
2021-01-02 21:48:42 -08:00
}