-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.65 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@raminyavari/ajv-ts-schema",
"description": "Simplify AJV Schema Validation with TypeScript",
"version": "1.0.0",
"license": "Apache-2.0",
"private": false,
"repository": "https://github.com/sirraminyavari/ajv-ts-schema",
"homepage": "https://www.raminy.dev/article/18712bd0-e06d-80b2-8e76-f86720b48d01/Simplifying%20AJV%20Schema%20Validation%20with%20TypeScript/ajv-ts-schema",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/types.d.ts",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"lint": "eslint",
"fix": "eslint --fix",
"prepare": "husky",
"release:ci": "release-it --ci",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui"
},
"author": {
"name": "Ramin Yavari",
"url": "https://raminy.dev"
},
"keywords": [
"ajv",
"ts-ajv",
"typescript-ajv",
"ajv-ts",
"typescript-schema-validation",
"ts-schema-validation",
"json-schema",
"json-schema-validation",
"json-schema-validator",
"schema-validator",
"validation",
"validator"
],
"release-it": {
"git": {
"commitMessage": "chore: Release ${version}",
"tagName": "${version}",
"requireCleanWorkingDir": true,
"commit": true,
"push": true,
"tag": true
},
"npm": {
"publish": false
},
"github": {
"release": true,
"tokenRef": "GITHUB_TOKEN"
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": "angular"
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.2",
"@types/node": "^20.14.8",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/ui": "^3.0.4",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"typescript": "^5.5.2",
"typescript-eslint": "^8.12.2",
"vite": "^4.5.3",
"vite-plugin-dts": "^3.9.1",
"vitest": "^3.0.4"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
}
}