mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
* desktopc-client swc-loader * More swc * Jest swc + upgrades * Revert @swc/jest usage for now * SWC minify * Remove setupFilesAfterEnv in package.json as per warning message in CI * Release notes * Minify on CI * swc helpers in loot-core * @swc/jest * Upgrade webpack * Add @swc/core to crdt * Use yarn cache in github actions * Cleanup * Fix electron * Revert "Fix electron" This reverts commit 787af1980648fa30788a1d1678dcda534716f31d. * Revert action.yml cache changes --------- Co-authored-by: Matiss Janis Aboltins <matiss@mja.lv>
32 lines
787 B
JSON
32 lines
787 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 && 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": "^2.0.1",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@swc/core": "^1.3.82",
|
|
"@swc/jest": "^0.2.29",
|
|
"@types/jest": "^27.5.0",
|
|
"@types/uuid": "^9.0.2",
|
|
"jest": "^27.0.0",
|
|
"ts-protoc-gen": "^0.15.0",
|
|
"typescript": "^5.0.2"
|
|
}
|
|
}
|