forked from tauri-apps/tauri-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "tauri-action",
"version": "0.6.0",
"description": "Tauri GitHub Action",
"contributors": [
"Tauri Programme within The Commons Conservancy"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts -o dist -m",
"lint": "biome lint",
"lint:write": "biome lint --write",
"format": "biome format --write",
"format:check": "biome format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tauri-apps/tauri-action.git"
},
"keywords": [
"actions",
"tauri"
],
"minimumReleaseAge": 4320,
"dependencies": {
"@actions/artifact": "6.2.1",
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"execa": "9.6.1",
"find-up-simple": "1.0.1",
"globby": "16.2.0",
"json5": "2.2.3",
"smol-toml": "1.6.1",
"string-argv": "0.3.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "25.9.1",
"@vercel/ncc": "0.38.4",
"typescript": "6.0.3"
},
"engines": {
"pnpm": "^10.16.0",
"node": ">=20"
}
}