mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
Clean up package.json files: hoist @types/react to root devDependencies with overrides, add proper exports and type declarations to @sd/assets, improve @sd/ts-client exports and move react/@tanstack/react-query to peer dependencies. Fix i64/u64 type mismatch in location manager. Delete stale lockfiles from packages/interface, packages/ts-client, and apps/mobile/modules/sd-mobile-core that shouldn't exist in a monorepo managed by the root lockfile. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
39 lines
718 B
JSON
39 lines
718 B
JSON
{
|
|
"name": "@sd/assets",
|
|
"version": "1.0.0",
|
|
"license": "GPL-3.0-only",
|
|
"publishConfig": {
|
|
"name": "@spacedriveapp/assets"
|
|
},
|
|
"sideEffects": false,
|
|
"types": "./types.d.ts",
|
|
"exports": {
|
|
"./icons": "./icons/index.ts",
|
|
"./icons/*": "./icons/*",
|
|
"./images": "./images/index.ts",
|
|
"./images/*": "./images/*",
|
|
"./svgs/*": "./svgs/*",
|
|
"./sounds": "./sounds/index.ts",
|
|
"./sounds/*": "./sounds/*",
|
|
"./videos/*": "./videos/*",
|
|
"./lottie/*": "./lottie/*",
|
|
"./util": "./util/index.ts"
|
|
},
|
|
"files": [
|
|
"icons",
|
|
"images",
|
|
"lottie",
|
|
"sounds",
|
|
"svgs",
|
|
"videos",
|
|
"util",
|
|
"types.d.ts"
|
|
],
|
|
"scripts": {
|
|
"gen": "node ./scripts/generate.mjs"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.0.0"
|
|
}
|
|
}
|