bun-plugin-dtsx 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "bun-plugin-dtsx",
3
+ "type": "module",
4
+ "version": "0.21.0",
5
+ "description": "A Bun Bundler plugin that auto generates your d.ts types extremely fast.",
6
+ "author": "Chris Breuer <chris@ow3.org>",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/stacksjs/bun-plugin-dts-auto#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/stacksjs/bun-plugin-dts-auto.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/stacksjs/bun-plugin-dts-auto/issues"
15
+ },
16
+ "keywords": [
17
+ "dts",
18
+ "dtsx",
19
+ "emit",
20
+ "generation",
21
+ "typescript",
22
+ "types",
23
+ "auto",
24
+ "stacks",
25
+ "bun",
26
+ "plugin",
27
+ "package"
28
+ ],
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.ts",
32
+ "import": "./dist/index.js"
33
+ },
34
+ "./*": {
35
+ "import": "./dist/*"
36
+ }
37
+ },
38
+ "module": "./dist/index.js",
39
+ "types": "./dist/index.d.ts",
40
+ "files": ["LICENSE.md", "README.md", "dist"],
41
+ "scripts": {
42
+ "build": "bun build.ts",
43
+ "lint": "bunx eslint .",
44
+ "lint:fix": "bunx eslint . --fix",
45
+ "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
46
+ "commit": "git cz",
47
+ "changelog": "bunx changelogen --output CHANGELOG.md",
48
+ "prepublishOnly": "bun run build",
49
+ "release": "bun run changelog && bunx bumpp package.json --all",
50
+ "test": "bun test",
51
+ "typecheck": "bun tsc --noEmit"
52
+ },
53
+ "dependencies": {
54
+ "@stacksjs/dtsx": "^0.2.2"
55
+ },
56
+ "devDependencies": {
57
+ "@commitlint/cli": "^19.5.0",
58
+ "@stacksjs/eslint-config": "^3.8.1-beta.2",
59
+ "@types/bun": "^1.1.10",
60
+ "bumpp": "^9.6.1",
61
+ "changelogen": "^0.5.7",
62
+ "commitizen": "^4.3.1",
63
+ "cz-git": "^1.10.1",
64
+ "lint-staged": "^15.2.10",
65
+ "simple-git-hooks": "^2.11.1",
66
+ "typescript": "^5.6.2"
67
+ },
68
+ "simple-git-hooks": {
69
+ "pre-commit": "bun lint-staged",
70
+ "commit-msg": "bunx --no -- commitlint --edit $1"
71
+ },
72
+ "lint-staged": {
73
+ "*.{js,jsx,ts,tsx}": "bunx eslint . --fix"
74
+ },
75
+ "config": {
76
+ "commitizen": {
77
+ "path": "node_modules/cz-git"
78
+ }
79
+ }
80
+ }