-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "audacity-actions",
"version": "1.0.0",
"private": true,
"description": "GitHub Actions to build Audacity",
"scripts": {
"lint": "eslint .",
"_postinstall": "node ./node_modules/platform-dependent-modules/cli.js",
"postinstall": "npm run _postinstall",
"prepare": "./package.sh",
"all": "npm run lint && npm run prepare"
},
"license": "BSD 3-Clause",
"dependencies": {
"@actions/artifact": "^2.1.8",
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.2.1",
"@actions/tool-cache": "^2.0.1",
"ds-store": "^0.1.6",
"extract-zip": "^2.0.1",
"fs-temp": "^2.0.1",
"md5": "2.3.0",
"simple-plist": "1.1.0",
"yaml": "2.4.5"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^9.6.0",
"jest": "^29.7.0",
"platform-dependent-modules": "^0.0.14"
},
"config": {
"platformDependentModules": {
"darwin": [
"ds-store@0.1.6",
"simple-plist@1.1.0"
]
}
}
}