forked from dagger/dagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@dagger.io/dagger",
"version": "0.0.0",
"author": "hello@dagger.io",
"license": "Apache-2.0",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist/"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"dependencies": {
"@lifeomic/axios-fetch": "^3.0.1",
"adm-zip": "^0.5.10",
"env-paths": "^3.0.0",
"execa": "^8.0.1",
"graphql": "^16.8.0",
"graphql-request": "^7.2.0",
"graphql-tag": "^2.12.6",
"node-color-log": "^11.0.0",
"node-fetch": "^3.3.1",
"reflect-metadata": "^0.2.1",
"tar": "^6.1.13",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "mocha",
"lint": "yarn eslint --max-warnings=0 .",
"fmt": "yarn eslint --fix .",
"docs:lint": "yarn eslint --max-warnings=0 --resolve-plugins-relative-to=./ --ext=.js,.ts,.mjs,.mts ../../docs/current_docs",
"docs:fmt": "yarn eslint --fix --resolve-plugins-relative-to=./ --ext=.js,.ts,.mjs,.mts ../../docs/current_docs ."
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/adm-zip": "^0.5.0",
"@types/mocha": "latest",
"@types/node": "~20",
"@types/tar": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.1"
}
}