mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-29 02:54:09 -05:00
I noticed that: - The web and electron versions of our `uuid` module both looked exactly the same… - …and deferred to the `uuid` package… - …and the async version just called the sync API. So now we will just use the `uuid` package directly everywhere.
31 lines
757 B
JSON
31 lines
757 B
JSON
{
|
|
"name": "@actual-app/crdt",
|
|
"version": "1.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"
|
|
}
|
|
}
|