mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* add support for inbound proxies * backend changes * fix file type * proxy -> tunnel, implement backend apis * wip start-tunneld * add domains and gateways, remove routers, fix docs links * dont show hidden actions * show and test dns * edit instead of chnage acme and change gateway * refactor: domains page * refactor: gateways page * domains and acme refactor * certificate authorities * refactor public/private gateways * fix fe types * domains mostly finished * refactor: add file control to form service * add ip util to sdk * domains api + migration * start service interface page, WIP * different options for clearnet domains * refactor: styles for interfaces page * minor * better placeholder for no addresses * start sorting addresses * best address logic * comments * fix unnecessary export * MVP of service interface page * domains preferred * fix: address comments * only translations left * wip: start-tunnel & fix build * forms for adding domain, rework things based on new ideas * fix: dns testing * public domain, max width, descriptions for dns * nix StartOS domains, implement public and private domains at interface scope * restart tor instead of reset * better icon for restart tor * dns * fix sort functions for public and private domains * with todos * update types * clean up tech debt, bump dependencies * revert to ts-rs v9 * fix all types * fix dns form * add missing translations * it builds * fix: comments (#3009) * fix: comments * undo default --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * fix: refactor legacy components (#3010) * fix: comments * fix: refactor legacy components * remove default again --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * more translations * wip * fix deadlock * coukd work * simple renaming * placeholder for empty service interfaces table * honor hidden form values * remove logs * reason instead of description * fix dns * misc fixes * implement toggling gateways for service interface * fix showing dns records * move status column in service list * remove unnecessary truthy check * refactor: refactor forms components and remove legacy Taiga UI package (#3012) * handle wh file uploads * wip: debugging tor * socks5 proxy working * refactor: fix multiple comments (#3013) * refactor: fix multiple comments * styling changes, add documentation to sidebar * translations for dns page * refactor: subtle colors * rearrange service page --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * fix file_stream and remove non-terminating test * clean up logs * support for sccache * fix gha sccache * more marketplace translations * install wizard clarity * stub hostnameInfo in migration * fix address info after setup, fix styling on SI page, new 040 release notes * remove tor logs from os * misc fixes * reset tor still not functioning... * update ts * minor styling and wording * chore: some fixes (#3015) * fix gateway renames * different handling for public domains * styling fixes * whole navbar should not be clickable on service show page * timeout getState request * remove links from changelog * misc fixes from pairing * use custom name for gateway in more places * fix dns parsing * closes #3003 * closes #2999 * chore: some fixes (#3017) * small copy change * revert hardcoded error for testing * dont require port forward if gateway is public * use old wan ip when not available * fix .const hanging on undefined * fix test * fix doc test * fix renames * update deps * allow specifying dependency metadata directly * temporarily make dependencies not cliackable in marketplace listings * fix socks bind * fix test --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: waterplea <alexander@inkin.ru>
131 lines
4.9 KiB
JSON
131 lines
4.9 KiB
JSON
{
|
|
"name": "startos-ui",
|
|
"version": "0.4.0-alpha.10",
|
|
"author": "Start9 Labs, Inc",
|
|
"homepage": "https://start9.com/",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"check": "npm run check:shared && npm run check:marketplace && npm run check:ui && npm run check:install && npm run check:setup",
|
|
"check:shared": "tsc --project projects/shared/tsconfig.json --noEmit --skipLibCheck",
|
|
"check:marketplace": "tsc --project projects/marketplace/tsconfig.json --noEmit --skipLibCheck",
|
|
"check:install": "tsc --project projects/install-wizard/tsconfig.json --noEmit --skipLibCheck",
|
|
"check:setup": "tsc --project projects/setup-wizard/tsconfig.json --noEmit --skipLibCheck",
|
|
"check:ui": "tsc --project projects/ui/tsconfig.json --noEmit --skipLibCheck",
|
|
"build:deps": "rimraf .angular/cache && (cd ../sdk && make bundle) && (cd ../patch-db/client && npm ci && npm run build)",
|
|
"build:install": "ng run install-wizard:build",
|
|
"build:setup": "ng run setup-wizard:build",
|
|
"build:ui": "ng run ui:build",
|
|
"build:ui:dev": "ng run ui:build:development",
|
|
"build:all": "npm run build:deps && npm run build:setup && npm run build:ui && npm run build:install",
|
|
"build:shared": "ng build shared",
|
|
"build:marketplace": "npm run build:shared && ng build marketplace",
|
|
"analyze:ui": "ng build ui --stats-json --named-chunks && npx -y @angular-experts/hawkeye dist/raw/ui/stats.json",
|
|
"publish:shared": "npm run build:shared && npm publish ./dist/shared --access public",
|
|
"publish:marketplace": "npm run build:marketplace && npm publish ./dist/marketplace --access public",
|
|
"start:install": "npm run-script build-config && ng serve --project install-wizard --host 0.0.0.0",
|
|
"start:setup": "npm run-script build-config && ng serve --project setup-wizard --host 0.0.0.0",
|
|
"start:ui": "npm run-script build-config && ng serve --project ui --host 0.0.0.0",
|
|
"start:ui:proxy": "npm run-script build-config && ng serve --project ui --host 0.0.0.0 --proxy-config proxy.conf.json",
|
|
"build-config": "node build-config.js"
|
|
},
|
|
"dependencies": {
|
|
"@angular/animations": "^20.1.0",
|
|
"@angular/cdk": "^20.1.0",
|
|
"@angular/common": "^20.1.0",
|
|
"@angular/compiler": "^20.1.0",
|
|
"@angular/core": "^20.1.0",
|
|
"@angular/forms": "^20.1.0",
|
|
"@angular/platform-browser": "^20.1.0",
|
|
"@angular/platform-browser-dynamic": "^20.1.0",
|
|
"@angular/pwa": "^20.1.0",
|
|
"@angular/router": "^20.1.0",
|
|
"@angular/service-worker": "^20.1.0",
|
|
"@materia-ui/ngx-monaco-editor": "^6.0.0",
|
|
"@noble/curves": "^1.4.0",
|
|
"@noble/hashes": "^1.4.0",
|
|
"@start9labs/argon2": "^0.3.0",
|
|
"@start9labs/start-sdk": "file:../sdk/baseDist",
|
|
"@taiga-ui/addon-charts": "4.52.0",
|
|
"@taiga-ui/addon-commerce": "4.52.0",
|
|
"@taiga-ui/addon-mobile": "4.52.0",
|
|
"@taiga-ui/addon-table": "4.52.0",
|
|
"@taiga-ui/cdk": "4.52.0",
|
|
"@taiga-ui/core": "4.52.0",
|
|
"@taiga-ui/dompurify": "4.1.11",
|
|
"@taiga-ui/event-plugins": "4.7.0",
|
|
"@taiga-ui/experimental": "4.52.0",
|
|
"@taiga-ui/icons": "4.52.0",
|
|
"@taiga-ui/kit": "4.52.0",
|
|
"@taiga-ui/layout": "4.52.0",
|
|
"@taiga-ui/polymorpheus": "4.9.0",
|
|
"ansi-to-html": "^0.7.2",
|
|
"base64-js": "^1.5.1",
|
|
"buffer": "^6.0.3",
|
|
"cbor": "npm:@jprochazk/cbor@^0.4.9",
|
|
"cbor-web": "^8.1.0",
|
|
"core-js": "^3.42.0",
|
|
"cron": "^2.2.0",
|
|
"cronstrue": "^2.21.0",
|
|
"deep-equality-data-structures": "1.5.1",
|
|
"dompurify": "^3.1.7",
|
|
"fast-json-patch": "^3.1.1",
|
|
"fuse.js": "^6.4.6",
|
|
"jose": "^4.9.0",
|
|
"js-yaml": "^4.1.0",
|
|
"marked": "^4.0.0",
|
|
"mime": "^4.0.3",
|
|
"monaco-editor": "^0.33.0",
|
|
"mustache": "^4.2.0",
|
|
"ng-qrcode": "^20.0.0",
|
|
"node-jose": "^2.2.0",
|
|
"patch-db-client": "file:../patch-db/client",
|
|
"pbkdf2": "^3.1.2",
|
|
"rxjs": "^7.8.2",
|
|
"tldts": "^7.0.11",
|
|
"ts-matches": "^6.3.2",
|
|
"tslib": "^2.8.1",
|
|
"uuid": "^8.3.2",
|
|
"zone.js": "^0.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-experts/hawkeye": "^1.7.2",
|
|
"@angular/build": "^20.1.0",
|
|
"@angular/cli": "^20.1.0",
|
|
"@angular/compiler-cli": "^20.1.0",
|
|
"@angular/language-service": "^20.1.0",
|
|
"@types/dompurify": "3.0.5",
|
|
"@types/estree": "^0.0.51",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/marked": "^4.0.3",
|
|
"@types/mustache": "^4.2.6",
|
|
"@types/node": "^22.15.19",
|
|
"@types/node-jose": "^1.1.10",
|
|
"@types/pbkdf2": "^3.1.0",
|
|
"@types/uuid": "^8.3.1",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^13.2.0",
|
|
"ng-packagr": "^20.1.0",
|
|
"node-html-parser": "^5.3.3",
|
|
"postcss": "^8.4.21",
|
|
"prettier": "^3.5.3",
|
|
"rimraf": "^6.0.1",
|
|
"ts-node": "^10.7.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged --concurrent false"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"semi": false,
|
|
"arrowParens": "avoid",
|
|
"trailingComma": "all",
|
|
"htmlWhitespaceSensitivity": "ignore",
|
|
"tabWidth": 2
|
|
}
|
|
}
|