mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-17 13:33:16 -04:00
* chore(deps): update dependency typescript to v6 * chore: fix bun types in core package --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nicolas Meienberger <github@thisprops.com>
38 lines
833 B
JSON
38 lines
833 B
JSON
{
|
|
"name": "@zerobyte/core",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./restic": {
|
|
"types": "./src/restic/index.ts",
|
|
"import": "./src/restic/index.ts",
|
|
"default": "./src/restic/index.ts"
|
|
},
|
|
"./restic/server": {
|
|
"types": "./src/restic/server.ts",
|
|
"import": "./src/restic/server.ts",
|
|
"default": "./src/restic/server.ts"
|
|
},
|
|
"./utils": {
|
|
"types": "./src/utils/index.ts",
|
|
"import": "./src/utils/index.ts",
|
|
"default": "./src/utils/index.ts"
|
|
},
|
|
"./node": {
|
|
"types": "./src/node/index.ts",
|
|
"import": "./src/node/index.ts",
|
|
"default": "./src/node/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"tsc": "tsc --noEmit",
|
|
"test": "bunx --bun vitest run --config ./vitest.config.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.11"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5 || ^6.0.0"
|
|
}
|
|
}
|