-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.38 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
83
84
85
86
87
88
89
{
"name": "objectbuilder-studio",
"version": "0.1.0",
"private": true,
"author": "NesDevr",
"license": "MIT",
"description": "A modern Open Tibia DAT and SPR asset editor for OTServ, OTCv8, PXG, and PokeTibia clients.",
"keywords": [
"open-tibia",
"otserver",
"otcv8",
"pxg",
"poketibia",
"dat-editor",
"spr-editor",
"sprite-editor"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NesDevr/objectbuilder-studio.git"
},
"homepage": "https://github.com/NesDevr/objectbuilder-studio#readme",
"bugs": {
"url": "https://github.com/NesDevr/objectbuilder-studio/issues"
},
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"preview": "electron-vite preview",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.node.json --noEmit && tsc -p tsconfig.web.json --noEmit",
"package:dir": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder --win nsis portable",
"smoke:packaged": "node scripts/smoke-packaged.mjs"
},
"dependencies": {
"lucide-react": "1.25.0",
"pngjs": "^7.0.0",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@types/node": "22.20.1",
"@types/pngjs": "^6.0.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.0.4",
"electron": "42.7.0",
"electron-builder": "26.15.7",
"electron-vite": "5.0.0",
"typescript": "7.0.2",
"vite": "7.3.6",
"vitest": "4.1.10"
},
"build": {
"appId": "com.nesdevr.objectbuilderstudio",
"productName": "ObjectBuilder Studio",
"copyright": "Copyright © 2026 NesDevr",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"package.json",
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"win": {
"icon": "build/icon.ico",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"artifactName": "ObjectBuilder-Studio-Setup-${version}-${arch}.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"portable": {
"artifactName": "ObjectBuilder-Studio-Portable-${version}-${arch}.${ext}"
}
}
}