mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "@getpaseo/client",
|
|
"version": "0.2.3",
|
|
"description": "Paseo client SDK package",
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/*.map",
|
|
"README.md"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./internal/daemon-client": {
|
|
"types": "./dist/daemon-client.d.ts",
|
|
"default": "./dist/daemon-client.js"
|
|
},
|
|
"./internal/daemon-client-transport-types": {
|
|
"types": "./dist/daemon-client-transport-types.d.ts",
|
|
"default": "./dist/daemon-client-transport-types.js"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"clean": "node ../../scripts/clean-package-dist.mjs",
|
|
"build": "npm run build --workspace=@getpaseo/protocol && tsc -p tsconfig.json --incremental false",
|
|
"build:clean": "npm run clean && npm run build",
|
|
"prepack": "npm run build:clean",
|
|
"typecheck": "tsgo --noEmit",
|
|
"typecheck:examples": "tsgo -p tsconfig.examples.json --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@getpaseo/protocol": "0.2.3",
|
|
"@getpaseo/relay": "0.2.3",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.9.0",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^4.1.6"
|
|
}
|
|
}
|