forked from BeOnAuto/auto-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@auto-engineer/flowlang",
"version": "0.1.0",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"dependencies": {
"@event-driven-io/emmett": "^0.38.3",
"fast-glob": "^3.3.3",
"graphql": "^16.11.0",
"graphql-tag": "^2.12.6",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ./eslint.config.ts",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
"convert-flow": "tsx scripts/convert-flow.ts",
"lint:fix": "eslint 'src/**/*.ts' --fix --config ./eslint.config.ts",
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore"
},
"publishConfig": {
"access": "public"
}
}