-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"version": "0.14.8",
"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": "tsx scripts/changelog.ts release",
"changelog:unreleased": "tsx scripts/changelog.ts unreleased",
"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,md}": "pnpm run format"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@infernus/streamer": "workspace:^",
"@infernus/types": "workspace:^",
"@inquirer/prompts": "^8.7.0",
"@types/node": "^26.4.0",
"all-contributors-cli": "^6.26.1",
"bumpp": "^12.2.2",
"conventional-changelog": "^8.1.3",
"conventional-changelog-conventionalcommits": "^10.4.0",
"execa": "^10.0.1",
"globals": "^17.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"rolldown": "^1.2.6",
"rolldown-plugin-dts": "^0.28.4",
"tslib": "^2.8.1",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"vitepress": "^2.0.0-alpha.19"
}
}