-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "elementor-editor-github-actions",
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "tsup --config ./tsup.config.ts",
"dev": "npm run build -- --watch",
"lint": "concurrently -n eslint,tsc,prettier -c magenta,blue,red \"eslint .\" \"tsc\" \"prettier . --check\"",
"local-action": "bash ./scripts/local-action.sh $1",
"build:ws": "npm run build --workspaces"
},
"engines": {
"node": ">=20.6.0",
"npm": ">=10.0.0"
},
"workspaces": [
"actions/*"
],
"author": "Elementor Team",
"license": "GPL-3.0-or-later",
"private": true,
"devDependencies": {
"@eslint/js": "^9.17.0",
"@github/local-action": "^2.2.1",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"ansi-styles": "^6.2.1",
"fs-extra": "^11.2.0",
"zod": "^3.24.1"
}
}