-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (58 loc) · 1.59 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
{
"name": "root",
"private": false,
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"@infinitylist/client": "latest",
"@infinitylist/emitter": "latest",
"@infinitylist/logger": "latest",
"@infinitylist/ipm": "latest",
"typedoc": "^0.24.8"
},
"devDependencies": {
"@types/node": "^20.5.1",
"@typescript-eslint/parser": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"lerna": "^7.1.5",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"scripts": {
"build": "lerna run build ",
"bootstrap": "lerna exec npm install",
"create": "npx lerna create",
"docs:gen": "typedoc",
"format": "prettier -w ./packages/**/src/**/*.{ts,tsx,js,jsx}",
"linter": "eslint --fix ./packages/**/src/**/*.{ts,tsx,js,jsx}",
"patch": "lerna publish prerelease",
"prepare": "husky install",
"publish": "lerna publish",
"test": "lerna run test",
"validate": "prettier -c ./packages/**/src/**/*.{ts,tsx,js,jsx}"
},
"homepage": "https://infinitybotlist.github.io/node-sdk/index.html",
"author": {
"name": "Infinity Development",
"url": "https://github.com/Infinity-Development",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InfinityBotList/node-sdk.git"
},
"bugs": {
"url": "https://github.com/InfinityBotList/node-sdk/issues"
},
"lint-staged": {
"./packages/**/src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier -w"
]
}
}