-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "remote-prompter",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.3.0",
"svelte-local-storage-store": "^0.4.0",
"tauri-plugin-clipboard-api": "^0.2.5",
"tauri-plugin-websocket-api": "github:tauri-apps/tauri-plugin-websocket"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@tauri-apps/cli": "^1.3.1",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^18.7.10",
"semantic-release": "^21.0.3",
"svelte": "^3.54.0",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.0",
"tslib": "^2.4.1",
"typescript": "^4.9.5",
"vite": "^4.2.1"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
]
]
}
}