-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 919 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 919 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "setup-emsdk",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Github action to download and setup Emscripten",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build lib/main.js --license licenses.txt",
"test": "ava"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "emscripten-core",
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vercel/ncc": "^0.38.4",
"ava": "^7.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import",
"tsx"
],
"workerThreads": false
}
}