-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
{
"name": "@lpgera/ts-env",
"version": "1.2.8",
"description": "An environment variable reader for TypeScript",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.13.2",
"husky": "^9.1.7",
"prettier": "^3.9.3",
"pretty-quick": "^4.2.2",
"typescript": "^6.0.3"
},
"scripts": {
"prepare": "rm -rf dist && tsc",
"prepublishOnly": "npm run test",
"postversion": "git push && git push --tags",
"test": "node --test tests/*",
"test:watch": "node --test --watch tests/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpgera/ts-env.git"
},
"keywords": [
"typescript",
"env",
".env",
"environment",
"variables"
],
"author": "lpgera",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpgera/ts-env/issues"
},
"homepage": "https://github.com/lpgera/ts-env#readme",
"files": [
"dist"
],
"volta": {
"node": "24.18.0"
}
}