Files
actual/packages/crdt/package.json
Matiss Janis Aboltins 28db6fb32e 🔖 (crdt) v2.0.0 (#1279)
2023-07-04 21:47:19 +01:00

31 lines
757 B
JSON

{
"name": "@actual-app/crdt",
"version": "2.0.0",
"license": "MIT",
"description": "CRDT layer of Actual",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:node": "tsc --p tsconfig.dist.json",
"proto:generate": "./bin/generate-proto",
"build": "rm -rf dist && yarn run build:node && cp src/proto/sync_pb.d.ts dist/src/proto/",
"test": "jest -c jest.config.js"
},
"dependencies": {
"google-protobuf": "^3.12.0-rc.1",
"murmurhash": "^0.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/uuid": "^9.0.2",
"jest": "^27.0.0",
"ts-jest": "^27.0.0",
"ts-protoc-gen": "^0.15.0",
"typescript": "^5.0.2"
}
}