-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 987 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
38
39
40
41
42
43
44
{
"name": "@tonik/env-plus",
"version": "0.1.10",
"description": "Environment variables toolkit for node applications",
"repository": {
"type": "git",
"url": "https://github.com/tonik/env-plus"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup index.ts",
"test": "vitest",
"type-check": "tsc --noEmit",
"release": "release-it"
},
"peerDependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@release-it/conventional-changelog": "^7.0.0",
"@types/node": "^20.4.2",
"release-it": "^16.1.2",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"zod": "^3.21.4"
}
}