generated from ivandotv/microbundle-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.32 KB
/
package.json
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
{
"name": "puntoenv",
"version": "4.0.0",
"description": "Simple package that enables you to load .env files in to process.env and also do variable expansion in a predetermined order based on the NODE_ENV environment variable value.",
"keywords": [
"dot-env",
"env",
"load-env",
"environment",
"env vars",
"environment variables",
"next-env",
"process env",
"env config",
"env file",
"env loader",
"env parser",
"env reader",
"env vars",
"env variables",
"dotenv",
"dotenv-expand"
],
"private": false,
"author": "Ivan Vlatkovic",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "vitest run",
"format": "biome format ./src",
"lint": "biome lint ./src",
"check": "biome check ./src --write --no-errors-on-unmatched --files-ignore-unknown=true",
"check:ci": "biome check ./src --no-errors-on-unmatched --files-ignore-unknown=true",
"build": "shx rm -rf ./dist && NODE_ENV=production microbundle --tsconfig ./tsconfig.json --format modern,cjs --output dist/index.js --target node && shx cp ./dist/index.d.ts ./dist/index.d.cts",
"gen:docs": "rm -rf ./docs/api && typedoc --options typedoc.cjs",
"prepublishOnly": "pnpm build",
"prepare": "lefthook install",
"release": "pnpm run prepublishOnly && pnpm changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivandotv/puntoenv.git"
},
"bugs": {
"url": "https://github.com/ivandotv/puntoenv/issues"
},
"homepage": "https://github.com/ivandotv/puntoenv#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.5",
"@types/node": "^20.14.2",
"lefthook": "^1.6.16",
"microbundle": "^0.15.1",
"shx": "^0.3.4",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6"
}
}