-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"version": "0.14.5",
"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",
"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": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt"
},
"lint-staged": {
"*.{ts,js}": "pnpm run lint",
"*.{ts,js,json,yml}": "pnpm run format"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@infernus/streamer": "workspace:^",
"@infernus/types": "workspace:^",
"@inquirer/prompts": "^8.4.3",
"@types/node": "^25.6.2",
"all-contributors-cli": "^6.26.1",
"bumpp": "^11.1.0",
"conventional-changelog-cli": "^5.0.0",
"execa": "^9.6.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"rolldown": "^1.0.0",
"rolldown-plugin-dts": "^0.25.0",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitepress": "^2.0.0-alpha.17"
}
}