-
Matiss Janis Aboltins authored
Fix a small regression introduced in https://github.com/actualbudget/actual/pull/1076 Tested locally and this seems to have solved the problem
Matiss Janis Aboltins authoredFix a small regression introduced in https://github.com/actualbudget/actual/pull/1076 Tested locally and this seems to have solved the problem
This project manages its dependencies using npm.
Learn more
package.json 757 B
{
"name": "@actual-app/crdt",
"version": "2.0.1",
"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"
}
}