-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "au2-tauri-boilerplate",
"private": false,
"version": "1.0.0",
"type": "module",
"license": "MIT",
"author": {
"name": "David Kossoglyad",
"email": "[email protected]"
},
"description": "Aurelia 2 + Tauri boilerplate",
"bugs": {
"url": "https://github.com/glyad/au2-tauri-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/glyad/au2-tauri-boilerplate.git"
},
"keywords": [
"aurelia",
"tauri",
"aurelia2",
"aurelia-tauri",
"boilerplate",
"typescript",
"vite"
],
"scripts": {
"start": "tauri dev",
"dev": "vite",
"build": "tsc && vite build",
"tauri": "tauri"
},
"dependencies": {
"@aurelia/fetch-client": "2.0.0-beta.12",
"@aurelia/kernel": "2.0.0-beta.12",
"@aurelia/metadata": "2.0.0-beta.12",
"@aurelia/route-recognizer": "2.0.0-beta.12",
"@aurelia/router-lite": "2.0.0-beta.12",
"@aurelia/runtime": "2.0.0-beta.12",
"@aurelia/runtime-html": "2.0.0-beta.12",
"@tauri-apps/api": "^1.5.3",
"aurelia": "2.0.0-beta.12"
},
"devDependencies": {
"@aurelia/vite-plugin": "latest",
"@tauri-apps/cli": "^1.5.11",
"@types/node": "^20.11.26",
"sass": "^1.71.1",
"typescript": "^5.4.2",
"vite": "^5.1.6"
}
}