Files
speckleAutomateTypescriptTe…/package.json
T
dependabot[bot] 65b4cb67fd Bump zod from 3.22.2 to 3.22.3 (#3)
Bumps [zod](https://github.com/colinhacks/zod) from 3.22.2 to 3.22.3.
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/master/CHANGELOG.md)
- [Commits](https://github.com/colinhacks/zod/compare/v3.22.2...v3.22.3)

---
updated-dependencies:
- dependency-name: zod
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-10 23:39:43 +00:00

35 lines
996 B
JSON

{
"name": "speckle-automate-typescript-example",
"version": "1.0.0",
"description": "Example Speckle automate function using typescript",
"type": "module",
"main": "src/index.ts",
"scripts": {
"main": "vite-node src/index.ts",
"generateSchema": "vite-node src/generateSchema.ts",
"build": "ncc build src/index.ts -o dist",
"build:vite": "vite build",
"prettier:fix": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@liuli-util/vite-plugin-node": "^0.7.0",
"@types/node": "^20.5.7",
"@vercel/ncc": "^0.36.1",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.2.2",
"vite-node": "^0.34.3"
},
"dependencies": {
"@speckle/objectloader": "^2.15.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.3",
"zod-to-json-schema": "^3.21.4"
}
}