-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ragestudio/devel
New core arch
- Loading branch information
Showing
193 changed files
with
3,905 additions
and
4,455 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,13 @@ | ||
{ | ||
"name": "rs-bundler", | ||
"version": "0.15.0", | ||
"description": "RageStudio Bundler Utility GUI", | ||
"main": "./out/main/index.js", | ||
"author": "RageStudio", | ||
"name": "@ragestudio/relic-core", | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"repository": "https://github.com/srgooglo/rs_bundler", | ||
"author": "SrGooglo <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"format": "prettier --write .", | ||
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix", | ||
"start": "electron-vite preview", | ||
"dev": "electron-vite dev", | ||
"build": "electron-vite build", | ||
"postinstall": "electron-builder install-app-deps", | ||
"pack:win": "electron-builder --win --config", | ||
"pack:mac": "electron-builder --mac --config", | ||
"pack:linux": "electron-builder --linux --config", | ||
"build:win": "npm run build && npm run pack:win", | ||
"build:mac": "npm run build && npm run pack:mac", | ||
"build:linux": "npm run build && npm run pack:linux" | ||
}, | ||
"dependencies": { | ||
"@electron-toolkit/preload": "^2.0.0", | ||
"@electron-toolkit/utils": "^2.0.0", | ||
"@getstation/electron-google-oauth2": "^14.0.0", | ||
"@imjs/electron-differential-updater": "^5.1.7", | ||
"@loadable/component": "^5.16.3", | ||
"@ragestudio/hermes": "^0.1.1", | ||
"adm-zip": "^0.5.10", | ||
"antd": "^5.13.2", | ||
"checksum": "^1.0.0", | ||
"classnames": "^2.3.2", | ||
"electron-differential-updater": "^4.3.2", | ||
"electron-is-dev": "^2.0.0", | ||
"electron-store": "^8.1.0", | ||
"electron-updater": "^6.1.1", | ||
"googleapis": "^105.0.0", | ||
"got": "11.8.3", | ||
"human-format": "^1.2.0", | ||
"less": "^4.2.0", | ||
"lodash": "^4.17.21", | ||
"merge-stream": "^2.0.0", | ||
"node-7z": "^3.0.0", | ||
"open": "8.4.2", | ||
"progress-stream": "^2.0.0", | ||
"protocol-registry": "^1.4.1", | ||
"react-icons": "^4.11.0", | ||
"react-router-dom": "6.6.2", | ||
"react-spinners": "^0.13.8", | ||
"react-spring": "^9.7.3", | ||
"react-motion": "0.5.2", | ||
"request": "^2.88.2", | ||
"rimraf": "^5.0.5", | ||
"signal-exit": "^4.1.0", | ||
"unzipper": "^0.10.14", | ||
"upath": "^2.0.1", | ||
"uuid": "^9.0.1", | ||
"which": "^4.0.0", | ||
"winreg": "^1.2.5" | ||
}, | ||
"devDependencies": { | ||
"@electron-toolkit/eslint-config": "^1.0.1", | ||
"@electron-toolkit/eslint-config-prettier": "^1.0.1", | ||
"@vitejs/plugin-react": "^4.0.4", | ||
"electron": "^25.6.0", | ||
"electron-builder": "^24.6.3", | ||
"electron-vite": "^1.0.27", | ||
"eslint": "^8.47.0", | ||
"eslint-plugin-react": "^7.33.2", | ||
"prettier": "^3.0.2", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"vite": "^4.4.9" | ||
"postinstall": "node scripts/postinstall.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/env node | ||
require("./dist/index.js") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "@ragestudio/relic-cli", | ||
"version": "0.17.0", | ||
"license": "MIT", | ||
"author": "RageStudio", | ||
"description": "RageStudio Relic, yet another package manager.", | ||
"main": "./dist/index.js", | ||
"bin": { | ||
"relic": "./bin.js" | ||
}, | ||
"scripts": { | ||
"dev": "hermes-node ./src/index.js", | ||
"build": "hermes build" | ||
}, | ||
"dependencies": { | ||
"commander": "^12.0.0" | ||
}, | ||
"devDependencies": { | ||
"@ragestudio/hermes": "^0.1.1" | ||
} | ||
} |
Oops, something went wrong.