mirror of
https://github.com/colanode/colanode.git
synced 2025-12-16 03:37:51 +01:00
30 lines
689 B
JSON
30 lines
689 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@colanode/core",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./registry/*": "./src/registry/*",
|
|
"./lib/*": "./src/lib/*",
|
|
"./types/*": "./src/types/*",
|
|
"./synchronizers/*": "./src/synchronizers/*"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"compile": "tsc --noEmit",
|
|
"test": "vitest",
|
|
"lint": "eslint src --ext .ts --max-warnings 0",
|
|
"build": "tsc",
|
|
"coverage": "vitest run --coverage "
|
|
},
|
|
"dependencies": {
|
|
"fractional-indexing-jittered": "^1.0.0",
|
|
"ulid": "^3.0.1",
|
|
"zod": "^4.1.12"
|
|
}
|
|
}
|