-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 839 Bytes
/
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
{
"name": "narrow-types",
"version": "1.4.5",
"repository": {
"type": "git",
"url": "[email protected]:kristiandupont/narrow-types.git"
},
"homepage": "https://www.github.com/kristiandupont/narrow-types",
"author": "Kristian Dupont <[email protected]>",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"build": "tsc",
"lint": "eslint . -f visualstudio --report-unused-disable-directives --ext .js,.ts",
"test": "vitest run",
"version": "npm run build"
},
"devDependencies": {
"@kristiandupont/dev-deps": "^2.16.0",
"np": "^10.0.0",
"zod": "^3.22.4"
},
"dependencies": {
"tsafe": "^1.6.5"
},
"peerDependencies": {
"zod": "^3.22.4"
},
"np": {},
"engines": {
"node": ">=16"
}
}