{
  "name": "@openfn/language-formsg",
  "version": "1.0.12",
  "description": "OpenFn formsg adaptor",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./types/index.d.ts",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "author": "Open Function Group",
  "license": "LGPLv3",
  "files": [
    "dist/",
    "types/",
    "ast.json",
    "configuration-schema.json"
  ],
  "dependencies": {
    "@opengovsg/formsg-sdk": "^0.15.0",
    "@openfn/language-common": "3.3.5"
  },
  "devDependencies": {
    "@types/chai": "^5.2.2",
    "@types/mocha": "^10.0.10",
    "assertion-error": "2.0.0",
    "chai": "4.3.6",
    "deep-eql": "4.1.1",
    "rimraf": "3.0.2",
    "ts-node": "10.9.1",
    "typescript": "5.9.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/openfn/adaptors.git"
  },
  "types": "types/index.d.ts",
  "main": "dist/index.cjs",
  "scripts": {
    "build": "pnpm clean && build-adaptor formsg src dts docs",
    "test": "TS_NODE_TRANSPILE_ONLY=true mocha --experimental-specifier-resolution=node --no-warnings --loader=ts-node/esm test/**/*.test.ts --exclude test/integration.test.ts --recursive",
    "test:watch": "TS_NODE_TRANSPILE_ONLY=true mocha -w --experimental-specifier-resolution=node --no-warnings --loader=ts-node/esm test/**/*.test.ts --exclude test/integration.test.ts --recursive",
    "test:integration": "TS_NODE_TRANSPILE_ONLY=true mocha --experimental-specifier-resolution=node --no-warnings --loader=ts-node/esm test/integration.test.ts",
    "clean": "rimraf dist types docs",
    "pack": "pnpm pack --pack-destination ../../dist"
  }
}