-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 KB
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
{
"name": "scoresync",
"version": "1.0.0",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"build": "tsc",
"build:caxa": "npm run build && caxa -i . -o release/scoresync.exe --exclude \"src/**\" --exclude \"*.ts\" --exclude \"*.map\" --exclude \"release/**\" --exclude \"node_modules/@types/**\" --exclude \".git/**\" --exclude \"*.md\" --exclude \"tsconfig.json\" -- \"{{caxa}}/node_modules/.bin/node\" \"{{caxa}}/dist/index.js\""
},
"pkg": {
"targets": [
"node18-win-x64"
],
"outputPath": "dist-exe",
"assets": [
"dist/**/*",
"lib/**/*",
"node_modules/**/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@sonolus/core": "^7.14.2",
"@sonolus/express": "^7.4.0",
"@sonolus/free-pack": "^1.2.0",
"express": "^4.21.2",
"morgan": "^1.10.0",
"sonolus-next-sekai-rush": "^1.0.7",
"sonolus-pjsekai-engine-extended": "github:sevenc-nanashi/sonolus-pjsekai-engine-extended#build",
"typescript": "^5.8.3",
"usctool": "^0.4.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/morgan": "^1.9.9",
"@types/yargs": "^17.0.33",
"caxa": "^3.0.1",
"nexe": "^5.0.0-beta.4",
"pkg": "^5.8.1",
"ts-node": "^10.9.2",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}