-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.82 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
{
"name": "json-schema-validate-action",
"description": "GitHub Action which validates YAML/JSON files against a JSON schema",
"version": "0.0.0-development",
"author": "David Sanders",
"private": true,
"homepage": "https://github.com/dsanders11/json-schema-validate-action",
"repository": {
"type": "git",
"url": "git+https://github.com/dsanders11/json-schema-validate-action.git"
},
"bugs": {
"url": "https://github.com/dsanders11/json-schema-validate-action/issues"
},
"keywords": [
"actions",
"json-schema",
"ajv",
"validate"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "vitest run --coverage --reporter=verbose",
"format:write": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --type-aware",
"package": "rolldown src/index.ts --minify --file dist/index.js --platform node",
"package:watch": "npm run package -- --watch",
"test": "vitest run --coverage --reporter=verbose",
"all": "npm run format:write && npm run lint && npm run test && npm run package",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/glob": "^0.6.1",
"@actions/http-client": "^4.0.0",
"ajv": "^8.18.0",
"ajv-draft-04": "^1.0.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/node": "^20.19.0",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"oxlint-tsgolint": "^0.16.0",
"rolldown": "^1.0.0-rc.9",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}