-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 876 Bytes
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
{
"name": "figma-linux-actions",
"version": "1.0.0",
"description": "Helper scripts using by workflow",
"scripts": {
"build": "ncc build src/index.ts && esbuild dist/index.js --minify --outfile=dist/index.js --allow-overwrite",
"test": "jest --testTimeout 1000000"
},
"author": "Chugunov Roman",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.0",
"@types/xml2js": "^0.4.14",
"@vercel/ncc": "^0.38.1",
"esbuild": "^0.19.5",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"dayjs": "^1.11.10",
"js-yaml": "^4.1.0",
"xml2js": "^0.6.2"
}
}