-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"bin": "./build/cli.cjs",
"dependencies": {
"openapi-types": "^12.1.3",
"openapi-typescript": "^6.7.0",
"yargs": "^17.7.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/tmp": "^0.2.6",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"dotenv": "^16.4.7",
"esbuild": "^0.19.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^15.14.0",
"jest": "^29.7.0",
"ora": "^8.1.1",
"prettier": "^3.0.3",
"tmp": "^0.2.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.18.1",
"uuid": "^11.0.3"
},
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.cjs"
}
},
"files": [
"build/**/*.js",
"build/**/*.cjs",
"build/**/*.d.ts",
"build/**/*.map"
],
"main": "./build/index.cjs",
"scripts": {
"build": "npm run build:clean && pnpm run build:esbuild && pnpm run build:eslint && pnpm run build:tsc",
"build:clean": "rm -rf build",
"build:esbuild": "./esbuild.mjs",
"build:eslint": "eslint src",
"build:graphql": "graphql-codegen",
"build:schemas": "esbuild ./src/build-schemas.ts --bundle --outfile=./build/build-schemas.js --platform=node --format=esm",
"build:tsc": "tsc --emitDeclarationOnly",
"cli": "node ./build/cli.js",
"test": "jest",
"types": "node ./scripts/types.js"
},
"types": "./build/index.d.ts",
"name": "directus-typeforge",
"version": "0.7.0",
"type": "module"
}