forked from tauri-apps/tauri-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "tauri-action",
"version": "0.3.1",
"description": "Tauri GitHub Action",
"author": "Lucas Nogueira <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts -o dist -m",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tauri-apps/tauri-action.git"
},
"keywords": [
"actions",
"tauri"
],
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@iarna/toml": "2.2.5",
"execa": "7.1.1",
"glob-gitignore": "^1.0.14",
"ignore": "5.2.4",
"json5": "2.2.3",
"lodash.merge": "^4.6.2",
"string-argv": "0.3.1",
"tslib": "2.5.0"
},
"devDependencies": {
"@types/node": "16.18.24",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"@vercel/ncc": "0.36.1",
"covector": "0.8.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"prettier": "2.8.7",
"typescript": "5.0.4"
},
"engines": {
"pnpm": ">=7.24.2"
}
}