Skip to content
Snippets Groups Projects
package.json 605 B
Newer Older
  • Learn to ignore specific revisions
  • James Long's avatar
    James Long committed
    {
      "name": "@actual-app/api",
    
    James Long's avatar
    James Long committed
      "license": "MIT",
    
    James Long's avatar
    James Long committed
      "description": "An API for Actual",
    
      "main": "dist/index.js",
      "types": "dist/index.d.ts",
    
      "files": [
    
        "default-db.sqlite",
    
        "migrations"
    
        "lint": "eslint .",
    
        "build:app": "yarn workspace loot-core build:api",
        "build:node": "tsc --p tsconfig.dist.json",
        "build": "yarn run build:app && yarn run build:node"
    
    James Long's avatar
    James Long committed
      "dependencies": {
    
        "node-fetch": "^2.6.9",
    
        "uuid": "3.3.2"
    
      },
      "devDependencies": {
        "typescript": "^5.0.2"
    
    James Long's avatar
    James Long committed
      }
    }