forked from vitalics/ajv-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "ajv-ts",
"description": "JSON-schema builder with typescript safety",
"version": "0.6.3",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"test": "bun test",
"ci:version": "changeset version && bun install --no-frozen-lockfile",
"ci:publish": "changeset publish"
},
"author": "Vitali Haradkou <[email protected]>",
"homepage": "https://github.com/vitalics/ajv-ts",
"keywords": [
"ajv",
"validation",
"json-schema",
"typescript",
"builder"
],
"bugs": {
"url": "https://github.com/vitalics/ajv-ts/issues",
"email": "[email protected]"
},
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@typescript-eslint/eslint-plugin": "6.4.0",
"bun-types": "1.0.25",
"eslint": "8.0.1",
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-n": "15.0.0",
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"dependencies": {
"ajv": "8.12.0",
"ajv-errors": "3.0.0",
"ajv-formats": "2.1.1"
}
}