-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
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
64
65
66
67
68
69
{
"name": "@daxserver/validation-schema-codegen",
"version": "dev",
"description": "Code generator for validation schemas for Typebox",
"keywords": [
"typebox",
"codegenerator",
"validation"
],
"author": {
"name": "Srihari Thalla",
"email": "daxserver@icloud.com"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"private": false,
"publishConfig": {
"access": "public",
"provenance": true,
"tag": "latest"
},
"dependencies": {
"graphology": "^0.26.0",
"graphology-dag": "^0.4.1",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-traversal": "^0.3.1",
"ts-morph": "^26.0.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@prettier/sync": "^0.6.1",
"@sinclair/typebox-codegen": "^0.11.1",
"@types/bun": "^1.2.21",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"graphology-types": "^0.24.8",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"tsc-alias": "^1.8.16",
"typescript-eslint": "^8.42.0"
},
"peerDependencies": {
"typescript": "~5.9.2"
},
"scripts": {
"build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"format": "prettier --cache --write .",
"lint": "eslint",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit"
}
}