-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 902 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 902 Bytes
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
{
"name": "effect-env",
"version": "0.4.1",
"description": "Typed, testable, policy-aware env management for Effect apps",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulJPhilp/effect-env.git"
},
"keywords": [
"environment",
"variables",
"effect",
"schema",
"typed"
],
"author": "Paul Philp",
"license": "MIT",
"dependencies": {
"dotenv": "^16.6.1",
"effect": "^3.19.3"
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^4.0.8"
}
}