-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 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
54
55
56
{
"private": true,
"author": "Toxic Dev <https://toxicdev.me>",
"homepage": "https://nodebyte.host/docs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeByteHosting/nodebyte.js.git"
},
"bugs": {
"url": "https://github.com/NodeByteHosting/nodebyte.js/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna clean",
"docs": "typedoc",
"patch": "lerna version patch --yes",
"prepare": "husky",
"prerelease": "lerna publish prerelease --yes --access public",
"publish": "lerna publish from-package --yes --access public",
"test": "lerna run test",
"version": "lerna version"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"chai": "^5.1.2",
"commitlint": "^19.6.0",
"eslint": "^9.14.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"nodebyte.js": "workspace:*",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typedoc": "^0.24.0"
},
"lint-staged": {
"./packages/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"./packages/**/*.{json,md,mdx}": [
"prettier --write"
]
}
}