-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "bun-stimulus-plugin",
"description": "Stimulus plugin for Bun to automatically load controllers from a directory.",
"license": "MIT",
"author": "Yam",
"repository": {
"type": "git",
"url": "git+https://github.com/YummYume/bun-stimulus-plugin.git"
},
"bugs": {
"url": "https://github.com/YummYume/bun-stimulus-plugin/issues"
},
"keywords": [
"bun",
"stimulus",
"plugin"
],
"publishConfig": {
"access": "public"
},
"version": "3.0.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"release": "tsup && changeset publish",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . && eslint . --fix"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@happy-dom/global-registrator": "^14.0.0",
"@hotwired/stimulus": "^3.2.2",
"bun-types": "^1.1.34",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}