forked from mesqueeb/is-what
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.38 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": "is-what",
"version": "5.0.0",
"description": "👨🔬 Collection of tiny type introspection helpers",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*.js": "./dist/*.js"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint": "prettier -w . && tsc --noEmit",
"build": "tsc",
"build:docs": "typedoc"
},
"repository": "github:mesqueeb/is-what",
"keywords": [
"javascript",
"typescript",
"typechecker",
"check-type",
"javascript-type",
"primitive-types",
"plain-object",
"plain-objects",
"class-instance",
"class-identifier",
"type-checking",
"type-checker",
"type-check",
"define-type",
"get-type",
"what-type",
"is-object",
"is-plain-obj",
"is-plain-object"
],
"contributors": [
"Luca Ban - Mesqueeb"
],
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"bugs": "https://github.com/mesqueeb/is-what/issues",
"homepage": "https://mesqueeb.github.io/is-what/",
"devDependencies": {
"@types/node": "^20.5.3",
"prettier": "^3.0.2",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"vitest": "^0.31.4"
},
"typedocOptions": {
"entryPoint": [
"src/index.ts"
],
"skipErrorChecking": true,
"navigationLinks": {
"GitHub": "https://github.com/mesqueeb/is-what"
}
}
}