Files
colanode/packages/core/package.json

26 lines
535 B
JSON
Raw Normal View History

2024-11-05 22:33:43 +01:00
{
2024-11-16 19:40:51 +01:00
"$schema": "https://json.schemastore.org/package.json",
2024-11-05 22:33:43 +01:00
"name": "@colanode/core",
"version": "1.0.0",
"type": "module",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src"
],
"scripts": {
"compile": "tsc --noEmit",
"test": "vitest",
2024-12-01 23:51:33 +01:00
"lint": "eslint src --ext .ts --max-warnings 0",
2024-11-10 10:09:53 +01:00
"build": "tsc",
2024-11-05 22:33:43 +01:00
"coverage": "vitest run --coverage "
},
"dependencies": {
2025-01-13 10:50:36 +01:00
"fractional-indexing-jittered": "^1.0.0",
"ulid": "^2.3.0",
"zod": "^3.23.8"
2024-11-05 22:33:43 +01:00
}
}