-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "env-refiner",
"version": "0.0.13",
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"author": {
"name": "MajorTom327"
},
"repository": {
"type": "git",
"url": "https://github.com/MajorTom327/env-refiner"
},
"keywords": [
"env",
"development",
"secrets"
],
"files": [
"dist"
],
"bin": {
"env-refiner": "dist/bin/es/env-refiner"
},
"description": "A simple manager for your environment in Node, validate it, use secrets, all in one config",
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c -w",
"test": "vitest --ui",
"test:ci": "vitest run",
"format": "prettier ./src --write",
"lint": "eslint ./src --ext .ts"
},
"types": "./dist/es/index.d.ts",
"exports": {
".": "./dist/es/index.js"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.7",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"eslint": "^8.56.0",
"luxon": "^3.4.4",
"prettier": "^3.2.4",
"rambda": "^9.0.1",
"rollup": "^4.9.6",
"ts-pattern": "^5.0.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1",
"vitest-mock-extended": "^1.3.1",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"dependencies": {
"luxon": "^3.4.4",
"rambda": "^9.0.1",
"ts-pattern": "^5.0.6",
"uuid": "^9.0.1",
"yaml": "^2.3.4",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"peerDependencies": {
"rambda": "^9.0.1",
"ts-pattern": "^5.0.6",
"uuid": "^9.0.1",
"yaml": "^2.3.4",
"yargs": "^17.7.2",
"zod": "^3.22.4"
}
}