mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-06 22:33:34 -04:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "@sd/ts-client",
|
|
"version": "0.1.0",
|
|
"description": "Type-safe TypeScript client for Spacedrive daemon",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "jest",
|
|
"generate-types": "cargo run --bin generate_typescript_types --manifest-path ../../core/Cargo.toml"
|
|
},
|
|
"keywords": [
|
|
"spacedrive",
|
|
"client",
|
|
"typescript",
|
|
"daemon"
|
|
],
|
|
"author": "Spacedrive",
|
|
"license": "GPL-3.0",
|
|
"peerDependencies": {
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"react": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@tanstack/react-query": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@types/jest": "^29.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@tanstack/react-query": "^5.62.0",
|
|
"jest": "^29.0.0",
|
|
"ts-jest": "^29.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.0.0",
|
|
"@types/ws": "^8.0.0"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"src/**/*"
|
|
]
|
|
}
|