-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "bun-plugin-auto-imports",
"type": "module",
"version": "0.3.1",
"description": "A Bun Bundler plugin that allows for auto-imports.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/bun-plugin-auto-imports#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/bun-plugin-auto-imports.git"
},
"bugs": {
"url": "https://github.com/stacksjs/bun-plugin-auto-imports/issues"
},
"keywords": [
"auto-imports",
"bun",
"plugin",
"unimport",
"package",
"stacks"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["LICENSE.md", "README.md", "dist"],
"scripts": {
"build": "bun build.ts",
"dev": "bun build.ts --watch",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"fresh": "rm -rf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "bun tsc --noEmit",
"typecheck:watch": "bun tsc --noEmit --watch",
"clean": "rm -rf dist/ coverage/ .eslint-auto-import.json auto-imports.d.ts"
},
"dependencies": {
"unimport": "^4.1.2"
},
"devDependencies": {
"@stacksjs/eslint-config": "^3.15.1-beta.4",
"@types/bun": "^1.2.2",
"bumpp": "^10.0.3",
"bun-plugin-dtsx": "^0.21.9",
"lint-staged": "^15.4.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts}": ["bunx eslint . --fix"]
}
}