-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.81 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
{
"name": "bini-env",
"version": "1.1.1",
"description": "Universal environment variable loader and Vite plugin for Bini.js — powered by Hono, works across Node.js, Bun, Deno, Vercel Edge, Netlify Edge, and Cloudflare Workers",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": true,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"test": "node --test",
"type-check": "tsc --noEmit"
},
"keywords": [
"vite",
"vite-plugin",
"bini",
"bini-js",
"bini.js",
"hono",
"hono-adapter",
"environment",
"env",
"bun",
"deno",
"edge-functions",
"edge-runtime",
"cross-runtime",
"env-loader",
"vercel-edge",
"netlify-edge",
"cloudflare-workers",
"runtime-agnostic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Binidu01/Bini-Env.git"
},
"homepage": "https://github.com/Binidu01/Bini-Env#readme",
"bugs": {
"url": "https://github.com/Binidu01/Bini-Env/issues"
},
"author": "Bini.js Team",
"license": "MIT",
"peerDependencies": {
"hono": ">=4.0.0",
"vite": ">=8.0.0"
},
"peerDependenciesMeta": {
"hono": {
"optional": false
},
"vite": {
"optional": false
}
},
"devDependencies": {
"@types/node": "^25.6.0",
"hono": "^4.8.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^8.0.8"
},
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}