-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.96 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.96 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
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
81
82
83
84
85
86
87
88
{
"name": "dotenv-oxy",
"version": "1.0.4",
"description": "Type-safe environment variable parser with validation and error handling for Node.js and React Native",
"main": "dist/node.js",
"module": "dist/node.js",
"types": "dist/node.d.ts",
"source": "src/node.ts",
"exports": {
".": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"require": "./dist/node.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"require": "./dist/node.js"
},
"./react-native": {
"types": "./dist/react-native.d.ts",
"import": "./dist/react-native.js",
"require": "./dist/react-native.js"
}
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"typecheck": "tsc --noEmit",
"build": "tsc",
"clean": "rm -rf dist node_modules",
"prepublishOnly": "npm run build"
},
"keywords": [
"dotenv",
"environment",
"variables",
"config",
"javascript",
"typescript",
"validation",
"env",
"react-native",
"node",
"environment variables",
"configuration",
"type-safe",
"error handling"
],
"author": "Gerem66 <contact@geremy.dev>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Gerem66/dotenv-oxy.git"
},
"bugs": {
"url": "https://github.com/Gerem66/dotenv-oxy/issues"
},
"homepage": "https://github.com/Gerem66/dotenv-oxy#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {},
"devDependencies": {
"typescript": "^5.8.3",
"@types/node": "^20.0.0"
},
"peerDependencies": {
"dotenv": "^17.0.0",
"react-native-config": "^1.0.0"
},
"peerDependenciesMeta": {
"dotenv": {
"optional": true
},
"react-native-config": {
"optional": true
}
},
"engines": {
"node": ">=16.0.0"
}
}