forked from sevenc-nanashi/sonolus-pjsekai-engine-extended
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "sonolus-pjsekai-engine",
"version": "0.1.0",
"description": "A recreation of Project Sekai: Colorful Stage! engine in Sonolus",
"author": "NonSpicyBurrito",
"repository": "github:NonSpicyBurrito/sonolus-pjsekai-engine",
"license": "MIT",
"keywords": [
"Sonolus"
],
"main": "dist",
"files": [
"dist"
],
"scripts": {
"lint": "tsc -p . --noEmit && eslint --ext .ts src/",
"serve": "ts-node-dev --respawn --transpile-only ./src/serve",
"build": "ts-node ./src/build && tsc -p ./tsconfig.lib.json",
"convert": "ts-node ./src/convert && tsc -p ./tsconfig.lib.json"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"prettier": "^2.5.1",
"sonolus-core": "^0.2.2",
"sonolus.js": "^4.0.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}