-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.6 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
{
"name": "@arkenv/bun-plugin",
"version": "1.0.0-alpha.1",
"author": "Yam Borodetsky <yam@yam.codes>",
"repository": {
"type": "git",
"url": "git+https://github.com/yamcodes/arkenv.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"devDependencies": {
"@repo/types": "workspace:*",
"@size-limit/esbuild-why": "catalog:",
"@size-limit/preset-small-lib": "catalog:",
"@types/bun": "catalog:",
"arkenv": "workspace:*",
"arktype": "catalog:",
"bun": "catalog:",
"rimraf": "catalog:",
"size-limit": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"arkenv": "workspace:^",
"arktype": "^2.1.22",
"bun": "^1.0.0"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"bugs": "https://github.com/yamcodes/arkenv/labels/%40arkenv%2Fbun-plugin",
"description": "ArkEnv plugin for Bun",
"files": [
"dist"
],
"homepage": "https://arkenv.js.org",
"keywords": [
"arktype",
"arkenv",
"environment",
"variables",
"bun",
"plugin",
"bun-plugin"
],
"license": "MIT",
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist node_modules",
"test": "vitest",
"fix": "pnpm -w run fix",
"changeset": "pnpm -w run changeset",
"size": "size-limit --json > .size-limit.json"
},
"type": "module",
"types": "./dist/index.d.ts",
"size-limit": [
{
"path": "dist/index.js",
"limit": "2.6 kB",
"import": "*",
"ignore": [
"bun",
"arktype",
"node:path",
"node:fs",
"node:process"
]
}
]
}