-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"workspaces": [
"packages/@valapi/auth",
"packages/@valapi/crosshair",
"packages/@valapi/lib",
"packages/@valapi/riot-api",
"packages/@valapi/valorant-api.com",
"packages/@valapi/web-client"
],
"private": true,
"name": "node-valapi",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/valapi/node-valapi.git"
},
"author": "ing3kth (https://github.com/KTNG-3)",
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.1.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"express": "^4.19.2",
"jest": "29.7.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.9",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"scripts": {
"test": "jest --detectOpenHandles",
"format": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write \"packages/**/*\"",
"lint": "npx eslint packages",
"compile": "npx tsc --build tsconfig.json",
"compile:clean": "npm exec --workspaces -- rimraf \"build\" \"tsconfig.tsbuildinfo\"",
"docs": "typedoc",
"docs:clean": "rimraf \"docs\"",
"clean": "npm run compile:clean && npm run docs:clean",
"build": "npm run clean && npm run format && npm run lint && npm run compile"
}
}