-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 987 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
39
40
{
"name": "@sonolus/pack",
"version": "5.4.7",
"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": {
"check-type": "tsc -p . --noEmit",
"check-lint": "eslint .",
"check-format": "prettier . --check",
"build": "tsc -p ."
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"@sinclair/typebox": "^0.34.13",
"@sonolus/core": "~7.11.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0"
}
}