-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"workspaces": [
"packages/*"
],
"private": true,
"name": "twurple-workspace",
"version": "0.0.0",
"repository": "github:twurple/twurple",
"author": "Daniel Fischer <daniel@d-fischer.dev>",
"license": "MIT",
"devDependencies": {
"@d-fischer/documen.ts": "^0.17.7",
"@d-fischer/eslint-config": "^6.3.0",
"@types/node": "^20.19.25",
"@types/twitch-ext": "^1.24.4",
"cross-env": "^7.0.3",
"crowd": "^0.2.10",
"del-cli": "^7.0.0",
"eslint": "^8.57.0",
"husky": "^4.3.6",
"lint-staged": "^11.2.6",
"prettier": "^2.2.1",
"tmi.js": "^1.8.5",
"typescript": "~5.9.3",
"vitest": "^4.0.13"
},
"resolutions": {
"@types/react": "^17"
},
"scripts": {
"lint": "eslint --ext js,ts packages",
"prettier:check": "prettier --check \"packages/**\"",
"prettier:fix": "prettier --write \"packages/**\"",
"build": "tsc --build",
"rebuild": "npm run clean && npm run build",
"clean": "del-cli packages/**/lib packages/**/*.tsbuildinfo",
"docs": "documen.ts",
"test": "vitest",
"preversion": "npm run build && npm run lint && npm run prettier:check",
"prepublishOnly": "npm run rebuild"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@types/react": "^17"
}
}