-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "character-normalizer",
"version": "0.1.2",
"description": "Desktop and browser UI for generating normalized front, side, and body character reference images.",
"type": "module",
"main": "desktop/main.cjs",
"author": "dev-willbird1936",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-willbird1936/Character-Normalizer.git"
},
"bugs": {
"url": "https://github.com/dev-willbird1936/Character-Normalizer/issues"
},
"homepage": "https://github.com/dev-willbird1936/Character-Normalizer#readme",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"desktop": "npm run build && electron desktop/main.cjs",
"dev": "tsx watch src/server.ts",
"start": "tsx src/server.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"express": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"electron": "^43.0.0",
"tsx": "^4.15.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}