forked from tauri-apps/tauri-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
54
55
{
"name": "tauri-action",
"version": "0.4.5",
"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": "eslint src/**",
"format": "prettier --write src/** action.yml README.md",
"format:check": "prettier --check src/** action.yml README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tauri-apps/tauri-action.git"
},
"keywords": [
"actions",
"tauri"
],
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@iarna/toml": "2.2.5",
"execa": "8.0.1",
"globby": "^14.0.0",
"json5": "2.2.3",
"lodash.merge": "^4.6.2",
"string-argv": "0.3.2",
"tslib": "2.6.2"
},
"devDependencies": {
"@types/node": "20.11.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"@vercel/ncc": "0.38.1",
"covector": "0.10.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"prettier": "3.2.4",
"typescript": "5.3.3"
},
"engines": {
"pnpm": ">=7.33.0",
"node": ">=20"
}
}