mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
* Update CRDT protobuf generation to create a .ts file * Move remaining .d.ts files to .ts * Fix remaining type errors * Ignore .d.ts files so we don't accidentally use them in the future * Add release notes
30 lines
694 B
JSON
30 lines
694 B
JSON
{
|
|
"name": "@actual-app/crdt",
|
|
"version": "2.1.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",
|
|
"test": "vitest --globals"
|
|
},
|
|
"dependencies": {
|
|
"google-protobuf": "^3.21.4",
|
|
"murmurhash": "^2.0.1",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/google-protobuf": "^3.15.12",
|
|
"protoc-gen-js": "^3.21.4-4",
|
|
"ts-protoc-gen": "^0.15.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|