This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"version": "0.14.4",
"private": true,
"type": "module",
"scripts": {
"build": "tsx scripts/build.ts",
"build-all": "tsx scripts/build-all.ts",
"release": "tsx scripts/release.ts",
"contributors": "all-contributors generate & git add README.md",
"lint-staged": "lint-staged",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"prepare": "husky",
"preinstall": "npx only-allow pnpm -y",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
],
"*.{ts,js,json,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@infernus/streamer": "workspace:^",
"@infernus/types": "workspace:^",
"@inquirer/prompts": "^8.4.1",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"all-contributors-cli": "^6.26.1",
"bumpp": "^11.0.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^10.2.0",
"execa": "^9.6.1",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"rolldown": "^1.0.0-rc.15",
"rolldown-plugin-dts": "^0.23.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitepress": "^2.0.0-alpha.17"
}
}