-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 782 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 782 Bytes
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
{
"name": "editaur",
"description": "A basic cross-platform file editor written with html/css/javascript/tauri",
"keywords": [
"tauri",
"javascript",
"html",
"css",
"text editor",
"cross-platform"
],
"license": "MIT",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri dev": "tauri dev",
"tauri build": "tauri build",
"test": "npx playwright test"
},
"dependencies": {
"@tauri-apps/api": "^1.1.0"
},
"devDependencies": {
"playwright": "^1.27.1",
"@playwright/test": "^1.27.1",
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"svelte": "^3.49.0",
"vite": "^3.0.2",
"@tauri-apps/cli": "^1.1.0"
}
}