-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
37
{
"name": "@idrinth-api-bench/desktop",
"private": true,
"version": "2.7.4",
"type": "module",
"description": "This is a wrapper for framework execution. It provides applications for multiple desktop platforms to previously created run tests.",
"author": "Björn Büttner",
"homepage": "https://idrinth-api-ben.ch",
"bugs": {
"url": "https://github.com/idrinth-api-bench/api-bench/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/idrinth-api-bench/desktop.git"
},
"scripts": {
"build": "npm run drop-dist && vue-tsc && vite build && node tools/fix-index.js && node tools/copy-starter.js",
"start": "npm run build && node dist/run.js start",
"package": "npm run build && node dist/run.js package",
"make": "npm run build && node dist/run.js make",
"drop-dist": "node tools/drop-dist.js"
},
"dependencies": {
"vue": "^3.4.31",
"@idrinth-api-bench/assets": "https://github.com/idrinth-api-bench/assets"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vue-tsc": "^2.2.0"
},
"engines": {
"node": ">=20"
},
"engineStrict": true
}