mirror of
https://github.com/actualbudget/actual.git
synced 2026-07-21 17:59:54 -05:00
c1c4856aa7
Bumps the npm_and_yarn group with 1 update in the / directory: [dompurify](https://github.com/cure53/DOMPurify). Updates `dompurify` from 3.4.10 to 3.4.11 - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](https://github.com/cure53/DOMPurify/compare/3.4.10...3.4.11) --- updated-dependencies: - dependency-name: dompurify dependency-version: 3.4.11 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "@actual-app/crdt",
|
|
"version": "3.1.0",
|
|
"description": "CRDT layer of Actual",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actualbudget/actual.git",
|
|
"directory": "packages/crdt"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/*.test.d.ts",
|
|
"!dist/**/*.test.d.ts.map",
|
|
"!dist/**/*.spec.d.ts",
|
|
"!dist/**/*.spec.d.ts.map"
|
|
],
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"publishConfig": {
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts"
|
|
},
|
|
"scripts": {
|
|
"build:node": "vite build",
|
|
"proto:generate": "./bin/generate-proto",
|
|
"build": "yarn run build:node && tsgo -b",
|
|
"test": "vitest --run",
|
|
"typecheck": "tsgo -b"
|
|
},
|
|
"dependencies": {
|
|
"@bufbuild/protobuf": "^2.12.0",
|
|
"murmurhash": "^2.0.1",
|
|
"uuid": "^14.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@bufbuild/protoc-gen-es": "^2.12.0",
|
|
"@typescript/native-preview": "beta",
|
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
"vite": "^8.0.16",
|
|
"vitest": "^4.1.8"
|
|
}
|
|
}
|