-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "@sonolus/sonolus.js",
"version": "9.5.3",
"description": "TypeScript based Developer Toolkit for Sonolus",
"author": "NonSpicyBurrito",
"repository": "github:Sonolus/sonolus.js",
"license": "MIT",
"keywords": [
"Sonolus"
],
"type": "module",
"main": "dist/lib/index.js",
"exports": {
".": "./dist/lib/index.js",
"./shared": "./dist/lib/index.shared.js",
"./play": "./dist/lib/index.play.js",
"./watch": "./dist/lib/index.watch.js",
"./preview": "./dist/lib/index.preview.js",
"./tutorial": "./dist/lib/index.tutorial.js"
},
"bin": {
"sonolus-cli": "dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"check-type": "tsc -p . --noEmit",
"check-lint": "eslint .",
"check-format": "prettier . --check",
"build": "tsc -p . && node ./build.js"
},
"dependencies": {
"esbuild": "^0.24.2",
"express": "^4.21.2",
"fs-extra": "^11.2.0"
},
"peerDependencies": {
"@sonolus/core": "~7.11.0",
"@sonolus/express": "~7.3.2",
"@sonolus/free-pack": "~1.1.6",
"@sonolus/sonolus.js-compiler": "~1.6.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.10",
"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"
}
}