-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.69 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@lando/devtool",
"description": "A next generation development tool.",
"version": "4.0.0-unstable.0",
"author": "Mike Pirog @pirog",
"license": "MIT",
"repository": "lando/devtool",
"bugs": "https://github.com/lando/devtool/issues/new/choose",
"homepage": "https://github.com/lando/devtool",
"keywords": [
"devtool",
"devtool-plugin",
"core"
],
"type": "module",
"engines": {
"bun": ">=1.2.15"
},
"bin": {
"devtool": "./bin/devtool"
},
"scripts": {
"pkg": "bun build bin/devtool.js --compile --outfile dist/devtool --minify --target bun",
"docs:build": "VPL_MVB_VERSION=$(git describe --tags --always --abbrev=1 --match=\"v[0-9].*\") vitepress build docs",
"docs:dev": "VPL_BASE_URL=http://localhost:5173 VPL_MVB_VERSION=$(git describe --tags --always --abbrev=1 --match=\"v[0-9].*\") vitepress dev docs",
"docs:mvb": "mvb docs",
"docs:preview": "vitepress preview docs",
"format": "prettier --write .",
"leia": "leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
"lint": "eslint . --ext .cjs --ext .js --ext .mjs",
"test": "bun run lint && && bun run unit && bun run leia",
"unit": "bun test --coverage"
},
"oclif": {
"bin": "devtool",
"dirname": "devtool",
"name": "@lando/devtool",
"plugins": [],
"hooks": {
"pre-config": [
"./hooks/test.js",
"./hooks/test2.js"
],
"post-config": [
"./hooks/test2.js",
"./hooks/test.cjs"
]
},
"topicSeparator": ":"
},
"dependencies": {
"@lando/argv": "^1.1.2",
"@npmcli/arborist": "^9.0.1",
"@oclif/core": "^4.2.10",
"axios": "1.9.0",
"camelcase-keys": "^9.1.3",
"copy-dir": "^0.4.0",
"debug": "^4.4.0",
"dockerode": "^4.0.4",
"fs-extra": "^11.1.1",
"get-package-type": "^0.1.0",
"is-class": "^0.0.9",
"is-interactive": "^2.0.0",
"is-root": "^3.0.0",
"jsonfile": "^6.1.0",
"kebabcase-keys": "^1.0.0",
"lodash-es": "^4.17.21",
"nanoid": "^3.3.9",
"nconf": "^0.12.0",
"node-cache": "^4.1.1",
"pacote": "^21.0.0",
"slugify": "^1.6.5",
"string-argv": "0.1.1",
"valid-path": "^2.1.0",
"valid-url": "^1.0.9",
"which": "^5.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@lando/leia": "^1.0.0-beta.4",
"@lando/vitepress-theme-default-plus": "1.1.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-typescript-bun": "^0.0.104",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^10.0.0",
"prettier": "^3.5.3",
"vitepress": "^1.6.3"
}
}