mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-06 07:01:45 -05:00
64 lines
1.4 KiB
JSON
64 lines
1.4 KiB
JSON
{
|
|
"name": "@actual-app/api",
|
|
"version": "26.5.0",
|
|
"description": "An API for Actual",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actualbudget/actual.git",
|
|
"directory": "packages/api"
|
|
},
|
|
"files": [
|
|
"@types",
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "@types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./@types/index.d.ts",
|
|
"development": "./index.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./models": {
|
|
"types": "./@types/models.d.ts",
|
|
"development": "./models.ts",
|
|
"default": "./dist/models.js"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"exports": {
|
|
".": {
|
|
"types": "./@types/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./models": {
|
|
"types": "./@types/models.d.ts",
|
|
"default": "./dist/models.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "vite build && tsgo --emitDeclarationOnly",
|
|
"test": "vitest --run",
|
|
"typecheck": "tsgo -b && tsc-strict"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/core": "workspace:*",
|
|
"@actual-app/crdt": "workspace:*",
|
|
"better-sqlite3": "^12.8.0",
|
|
"compare-versions": "^6.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript/native-preview": "beta",
|
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
"typescript-strict-plugin": "^2.4.4",
|
|
"vite": "^8.0.5",
|
|
"vite-plugin-peggy-loader": "^2.0.1",
|
|
"vitest": "^4.1.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|