-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
{
"name": "schemar",
"version": "0.0.0",
"description": "GitHub Action for validating structured data",
"repository": {
"type": "git",
"url": "https://github.com/johnnyreilly/schemar"
},
"license": "MIT",
"author": {
"name": "John Reilly",
"email": "johnny_reilly@hotmail.com"
},
"type": "module",
"main": "./dist/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build:debug": "rimraf lib && tsc --noEmit false --outDir lib",
"build:release": "ncc build src/index.ts -o dist --license licenses.txt",
"debug": "pnpm run build:debug && node --env-file=.env lib/index.js",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "eslint . .*js --max-warnings 0",
"prepare": "husky install",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@actions/core": "^1.10.1",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
},
"devDependencies": {
"@types/eslint": "^8.56.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-regexp": "^2.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-curly": "^0.1.3",
"prettier-plugin-packagejson": "^2.4.8",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
},
"packageManager": "pnpm@8.7.0",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}