mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-20 06:47:31 -04:00
* chore: migrate to vitest * test: speed up some suites by sharing sessions and mocking expensive non-tested actions * test: refactor some tests to verify behavior instead of implementation details * chore: fix linting issues
38 lines
822 B
JSON
38 lines
822 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": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|