-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "@emergente-labs/effect-env",
"version": "0.1.1",
"description": "Type-safe Effect-TS environment variable configuration with development fallbacks",
"type": "module",
"license": "MIT",
"author": "Emergente Labs",
"repository": {
"type": "git",
"url": "https://github.com/emergente-labs/effect-env"
},
"bugs": "https://github.com/emergente-labs/effect-env/issues",
"homepage": "https://github.com/emergente-labs/effect-env#readme",
"keywords": ["effect", "effect-ts", "environment", "config", "env", "type-safe", "typed-env"],
"engines": {
"node": ">=18.0.0"
},
"files": ["dist", "README.md", "LICENSE"],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prepare": "pnpm build",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build && pnpm run test"
},
"dependencies": {
"effect": "^3.19.8"
},
"devDependencies": {
"@effect/vitest": "^0.27.0",
"tsup": "^8.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}