-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "@tianhuil/opencode-dotenv",
"version": "0.1.1",
"description": "An OpenCode plugin that automatically loads .env files into shell environments",
"main": "./src/load-dotenv.ts",
"type": "module",
"exports": {
".": {
"types": "./src/load-dotenv.ts",
"import": "./src/load-dotenv.ts"
}
},
"scripts": {
"test": "bun test:unit",
"test:unit": "bun test test/load-dotenv.test.ts",
"test:e2e": "bun test test/e2e-cli.test.ts"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.52.0"
},
"devDependencies": {
"@types/bun": "latest",
"np": "^11.0.2"
},
"peerDependencies": {
"typescript": "^5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tianhuil/opencode-dotenv.git"
},
"homepage": "https://github.com/tianhuil/opencode-dotenv#readme",
"keywords": [
"opencode",
"dotenv",
"env",
"environment",
"plugin"
],
"author": "tianhuil",
"license": "MIT"
}