-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "types-json",
"version": "4.0.1",
"description": "Type checking for JSON values",
"license": "MIT",
"private": false,
"author": "Connor White",
"contributors": [
"Connor White"
],
"homepage": "https://github.com/bconnorwhite/types-json#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bconnorwhite/types-json.git"
},
"bugs": "https://github.com/bconnorwhite/types-json/issues",
"keywords": [
"json",
"object",
"value",
"array",
"typescript",
"types",
"type",
"checking",
"guard",
"guards"
],
"type": "module",
"main": ".auto/build/index.js",
"exports": "./.auto/build/index.js",
"types": ".auto/build/index.d.ts",
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo)"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "auto build",
"dev": "auto dev",
"lint": "auto lint",
"prepack": "yarn build",
"release": "auto release",
"test": "auto test",
"typecheck": "auto typecheck"
},
"dependencies": {
"is-zod": "^1.0.0",
"zod": "^3.20.2"
},
"devDependencies": {
"autorepo": "^0.1.9"
},
"eslintConfig": {
"extends": "@autosoft/eslint-config"
},
"jest": {
"preset": "@autosoft/jest-preset"
},
"npmpackagejsonlint": {
"extends": "npm-package-json-lint-config-auto"
}
}