This repository was archived by the owner on Dec 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.16 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@topgunbuild/typed",
"version": "0.1.0",
"description": "Fast, tiny and type-safe runtime validation library",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm run build",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "simple-git-hooks",
"release": "release-it",
"tarball": "rimraf tar && pnpm pack --pack-destination ./tar"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopGunBuild/typed.git"
},
"keywords": [
"check",
"checker",
"invalid",
"joi",
"json",
"list",
"model",
"object",
"schema",
"superstruct",
"type",
"typescript",
"valid",
"validate",
"validation",
"validation",
"validator",
"zod"
],
"author": "ivan@topgun.build",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopGunBuild/typed/issues"
},
"homepage": "https://github.com/TopGunBuild/typed#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^7.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"release-it": "^16.1.5",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.8.1",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"typescript": "4.9.4"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}