-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.79 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
{
"name": "dotenv-expand",
"version": "1000.0.0",
"description": "Expand environment variables using dotenv",
"main": "dist/lib/main.js",
"types": "lib/main.d.ts",
"exports": {
".": {
"require": "./dist/lib/main.js",
"types": "./lib/main.d.ts",
"default": "./dist/lib/main.js"
},
"./config": "./dist/config.js",
"./config.js": "./dist/config.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"lib/main.d.ts",
"config.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "esbuild lib/main.js config.js --bundle --platform=node --format=cjs --target=node16 --outdir=dist --outbase=. --legal-comments=none --minify",
"dts-check": "tsc --project tests/types/tsconfig.json",
"lint": "biome lint --diagnostic-level=error lib config.js tests",
"pretest": "npm run lint && npm run dts-check",
"test": "node tests/main.js",
"prepack": "npm run build",
"prepublishOnly": "npm pack --dry-run",
"prerelease": "npm test",
"release": "npm version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotenvx/dotenv-expand.git"
},
"homepage": "https://github.com/dotenvx/dotenv-expand#readme",
"bugs": {
"url": "https://github.com/dotenvx/dotenv-expand/issues"
},
"funding": "https://dotenvx.com",
"author": "motdotla",
"keywords": [
"dotenv",
"expand",
"variables",
"interpolation",
"substitution",
"env",
".env"
],
"readmeFilename": "README.md",
"license": "BSD-3-Clause",
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@dotenvx/primitives": "2.1.1",
"@types/node": "^18.11.3",
"dotenv": "^17.4.2",
"esbuild": "^0.28.1",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16"
}
}