-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·63 lines (63 loc) · 1.88 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
{
"name": "bot-plugins",
"version": "0.0.1",
"description": "Third-party bot-plugins",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"commit": "git-cz",
"publish:dev": "npx lerna publish from-package --dist-tag dev --yes",
"build": "npx lerna run build",
"local": "pnpm run build && pnpm run copy.lib && cd base && npm run dev",
"fmt.staged": "pretty-quick --staged",
"next-version": "npx lerna version prepatch -y",
"lint": "eslint .",
"test": "jest",
"create.app": "tsm ./scripts/create-app/create-app.ts",
"copy.lib": "tsm ./scripts/move/move.ts base",
"create.package": "tsm ./scripts/create-pkg/create-pkg.ts",
"lint:fix": "eslint --fix ./packages",
"prepare": "npx husky install",
"format": "prettier --check 'packages/**/*.{ts,tsx}'",
"format:fix": "prettier --write 'packages/**/*.{ts,tsx}'"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/honojs/middleware.git"
},
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "^18.6.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"commitlint": "18.6.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-miniflare": "^2.14.2",
"lerna": "^8.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"pretty-quick": "^4.0.0",
"rimraf": "5.0.5",
"ts-jest": "^29.1.2",
"tsm": "^2.3.0",
"typescript": "^5.4.3"
},
"packageManager": "[email protected]",
"dependencies": {
"rollup": "^4.13.2"
}
}