mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 15:07:54 -04:00
* Implement dowload of mobile native deps - Add a spinner animation to `pnpm prep` - Change abandoned dependency @iarna/toml with smol-toml - Validate cargo config.toml after generating it from mustache template - Disabled HTTP2 downloads with udici, it is very broken * Initial ios native deps xcframework logic * Remove logic for handling dynamic iOS libs, using static libs now * Fix PATH in build-rust.sh - Remove app.json * Restore crates/images/src/pdf.rs * minor fix .editorconfig * Finally ios successfully compiles with ffmpeg enabled - Change SDCore.podspec to add extra libraries required by ffmpeg - Fix heif linking for ios in config.toml template - Add symlink logic for extra libraries required to compile ios in build-rust.sh
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "@sd/scripts",
|
|
"private": true,
|
|
"main": "./preprep.mjs",
|
|
"type": "module",
|
|
"scripts": {
|
|
"prep": "node preprep.mjs",
|
|
"tauri": "node tauri.mjs",
|
|
"lint": "eslint --cache",
|
|
"typecheck": "tsc"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"endOfLine": "lf",
|
|
"printWidth": 99,
|
|
"singleQuote": true,
|
|
"arrowParens": "avoid",
|
|
"trailingComma": "es5"
|
|
},
|
|
"dependencies": {
|
|
"smol-toml": "^1.3.0",
|
|
"archive-wasm": "^1.7.0",
|
|
"mustache": "^4.2.0",
|
|
"os-proxy-config": "^1.1.1",
|
|
"plist": "^3.1.0",
|
|
"semver": "^7.6.3",
|
|
"undici": "^6.19.8"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.0",
|
|
"@babel/eslint-parser": "^7.24.1",
|
|
"@babel/eslint-plugin": "^7.23.5",
|
|
"@types/mustache": "^4.2.5",
|
|
"@types/node": ">18.18.x",
|
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
"@typescript-eslint/parser": "^7.3.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-jsdoc": "^48.2.1",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"typescript": "^5.4.2"
|
|
}
|
|
}
|