-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.96 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
{
"name": "bun-plugin-env",
"type": "module",
"version": "0.4.1",
"description": "A simple Bun plugin to load .env files as modules.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/bun-plugin-env#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/bun-plugin-env.git"
},
"bugs": {
"url": "https://github.com/stacksjs/bun-plugin-env/issues"
},
"keywords": [
"dotenv",
".env",
"env",
"bun-plugin",
"environment",
"typescript",
"plugin",
"bun"
],
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"bun": "./src/*",
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "bun build.ts",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"commit": "git cz",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@stacksjs/eslint-config": "^0.58.73",
"@types/bun": "^1.0.7",
"@types/node": "^20.11.20",
"bun-plugin-dts-auto": "^0.4.1",
"changelogen": "^0.5.5",
"commitizen": "^4.3.0",
"cz-git": "^1.8.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged",
"commit-msg": "bunx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}