-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.81 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
{
"version": "0.11.0-beta.13",
"private": true,
"type": "module",
"scripts": {
"build": "node ./scripts/build.js",
"release": "node ./scripts/release.js",
"contributors": "all-contributors generate & git add README.md",
"lint-staged": "lint-staged",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"prepare": "husky install",
"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"
]
},
"dependencies": {
"@infernus/core": "workspace:^",
"@infernus/streamer": "workspace:^",
"iconv-lite": "^0.6.3",
"lodash-unified": "^1.0.3",
"pino": "^9.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-json": "^6.1.0",
"@sa-mp/node": "^0.2.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"all-contributors-cli": "^6.26.1",
"bumpp": "^9.7.1",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"execa": "^9.4.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"inquirer": "^12.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"rollup-plugin-typescript-paths": "^1.5.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitepress": "^1.4.1"
}
}