-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.55 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.55 KB
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
{
"name": "setup-mlir",
"version": "1.3.0",
"description": "GitHub Action that sets up a specific version of the MLIR toolchain",
"main": "./dist/index.js",
"scripts": {
"build": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt && npx ncc build src/update-known-versions.ts -o dist/update-known-versions --source-map --license licenses.txt",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test:coverage": "cross-env NODE_ENV=test NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/munich-quantum-software/setup-mlir.git"
},
"keywords": [],
"author": "Munich Quantum Software Company GmbH and Chair for Design Automation, TUM",
"license": "Apache-2.0 WITH LLVM-exception",
"type": "module",
"bugs": {
"url": "https://github.com/munich-quantum-software/setup-mlir/issues"
},
"homepage": "https://github.com/munich-quantum-software/setup-mlir#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"@octokit/core": "^7.0.6",
"@octokit/openapi-types": "^27.0.0",
"ci": "^2.3.0",
"semver": "^7.7.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@vercel/ncc": "^0.38.4",
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}