-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.1 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
{
"name": "vite-plugin-dotenvx",
"type": "module",
"version": "0.1.1",
"description": "A Vite plugin to seamlessly integrate with dotenvx.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/vite-plugin-dotenvx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/vite-plugin-dotenvx.git"
},
"bugs": {
"url": "https://github.com/stacksjs/vite-plugin-dotenvx/issues"
},
"keywords": [
"typescript",
"dotenvx",
"vite",
"plugin",
"local",
"dotenv",
"vite-plugin-dotenvx",
"development",
"environment",
"variables"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx --bun pickier .",
"lint:fix": "bunx --bun pickier . --fix",
"format": "bunx --bun pickier . --format",
"format:fix": "bunx --bun pickier . --format --write",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit",
"dev:docs": "bun --bun vitepress dev docs",
"build:docs": "bun --bun vitepress build docs",
"preview:docs": "bun --bun vitepress preview docs"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.64.0"
},
"devDependencies": {
"@stacksjs/rpx": "^0.11.4",
"bumpp": "^10.4.1",
"changelogen": "^0.6.2",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vite-plugin-vue-devtools": "^7.7.9",
"vitepress": "^1.6.4",
"better-dx": "^0.2.7"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}