-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 942 Bytes
/
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
{
"name": "@sonolus/pack",
"version": "5.4.5",
"description": "CLI tool to pack Sonolus source files into repository and database",
"author": "NonSpicyBurrito",
"repository": "github:Sonolus/sonolus-pack",
"license": "MIT",
"keywords": [
"Sonolus"
],
"bin": {
"sonolus-pack": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "tsc -p . --noEmit && eslint . && prettier . --check",
"build": "tsc -p ."
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"@sinclair/typebox": "^0.33.7",
"@sonolus/core": "~7.9.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0"
}
}