-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "charlab",
"version": "1.1.2",
"description": "キャラクターの360度画像を用いて、擬似的に3Dモデル風の表示を実現するソフトウェアです。",
"main": "dist/main.js",
"scripts": {
"prepare": "husky",
"dev": "webpack --mode development --config webpack.config.js && concurrently --kill-others-on-fail \"webpack --mode development --config webpack.config.js --watch\" \"electron . --no-sandbox\"",
"build:web": "pnpm run build:app",
"build:app": "webpack --mode production --config webpack.config.js",
"build:linux": "pnpm run build:web && electron-builder --linux deb --publish never",
"build:mac": "pnpm run build:web && electron-builder --mac --publish never",
"build:windows": "pnpm run build:web && electron-builder --win --publish never",
"build": "pnpm run build:web",
"start": "pnpm run build && electron ./dist/main.js",
"dist": "electron-builder",
"format": "biome format --write .",
"lint": "biome check --write ."
},
"build": {
"appId": "com.example.mascot",
"files": ["dist/**/*", "assets/**/*", "package.json", "node_modules/**/*"],
"directories": {
"output": "release"
},
"npmArgs": ["--omit=dev", "--include=optional"],
"asarUnpack": [
"node_modules/@img/sharp-*/**/*.node",
"node_modules/@img/sharp-libvips-*/lib/**",
"node_modules/@img/sharp-linux-*/lib/**"
],
"mac": {
"target": ["dmg"]
},
"win": {
"target": ["nsis"]
},
"linux": {
"target": ["deb"]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TenTakano/CharLab.git"
},
"keywords": [],
"author": "Ten Takano <takano20771@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/TenTakano/CharLab/issues"
},
"homepage": "https://github.com/TenTakano/CharLab#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.17",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^36.2.1",
"electron-builder": "^26.0.12",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"mini-css-extract-plugin": "^2.9.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"dependencies": {
"bootstrap": "^5.3.6",
"classnames": "^2.5.1",
"electron-store": "^10.0.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.0",
"sharp": "^0.34.2"
}
}