Files
speckleAutomateTypescriptTe…/package.json
T
dependabot[bot] ae3f64dc94 Bump graphql from 16.8.0 to 16.8.1 (#2)
Bumps [graphql](https://github.com/graphql/graphql-js) from 16.8.0 to 16.8.1.
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](https://github.com/graphql/graphql-js/compare/v16.8.0...v16.8.1)

---
updated-dependencies:
- dependency-name: graphql
  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:35:33 +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.2",
"zod-to-json-schema": "^3.21.4"
}
}