-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
63
64
65
66
{
"name": "medley",
"version": "0.1.0",
"description": "Monorepo for Medley, audio engine for Node.js",
"author": {
"name": "Wittawas Nakkasem",
"email": "[email protected]"
},
"license": "GPL-3.0",
"scripts": {
"clean": "turbo run clean",
"build:radio": "turbo run build --filter=@seamless-medley/radio",
"combine-discord": "turbo run combine-discord --filter=@seamless-medley/radio",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/copyfiles": "^2.4.2",
"@types/fs-extra": "^11.0.3",
"@types/lodash": "^4.14.200",
"@types/node": "^20.14.8",
"copyfiles": "^2.4.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.4",
"is-ci": "^3.0.1",
"mkdirp": "^3.0.1",
"turbo": "^2.2.3",
"type-fest": "^4.8.3",
"typescript": "5.4.5"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*"
],
"allowedVersions": {
"@discordjs/opus": "0.9",
"rimraf": "3.0.2"
}
},
"allowedDeprecatedVersions": {
"babel-merge": "*",
"are-we-there-yet": "*",
"npmlog": "*",
"gauge": "*",
"glob": "*",
"inflight": "*",
"rimraf": "*"
},
"overrides": {
"typescript": "5.4.5",
"micromatch": ">=4.0.8"
}
},
"commitlint": {
"rules": {
"header-max-length": [
2,
"always",
200
]
}
}
}