forked from dart-lang/setup-dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 832 Bytes
/
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
{
"name": "setup-dart",
"version": "0.0.0",
"private": true,
"description": "The setup-dart GitHub Action - download and setup the Dart SDK.",
"main": "lib/main.mjs",
"scripts": {
"build": "dart compile js --enable-experiment=inline-class -olib/main.js lib/main.dart && dart tool/sig.dart --generate",
"dist": "ncc build lib/main.mjs && cp lib/main.js dist/main.cjs && cp lib/sig.txt dist/sig.txt",
"all": "npm run build && npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dart-lang/setup-dart.git"
},
"type": "module",
"keywords": [
"actions",
"dart",
"setup"
],
"license": "BSD",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.0",
"@actions/tool-cache": "^2.0.1"
}
}