-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.71 KB
/
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
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
{
"name": "maests",
"version": "2.8.6",
"description": "An executable compiler for creating Maestro's yaml-flows with typescript.",
"type": "module",
"main": "dist/commands/commands.mjs",
"types": "dist/commands/commands.d.ts",
"exports": {
".": {
"import": "./dist/commands/commands.mjs",
"types": "./dist/commands/commands.d.ts"
},
"./write-yaml": "./dist/write-yaml.mjs"
},
"bin": {
"maests": "./dist/main.mjs"
},
"scripts": {
"build": "npx unbuild && chmod 755 dist/main.mjs",
"release": "pnpm build && changelogen --release --publish --push",
"type-check": "tsc --noEmit",
"test": "vitest run"
},
"author": "[email protected]",
"devDependencies": {
"@types/node": "^18.14.0",
"changelogen": "^0.5.7",
"unbuild": "^2.0.0",
"vitest": "^2.1.3"
},
"peerDependencies": {
"consola": "^3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shoma-mano/maests.git"
},
"keywords": [
"maestro",
"e2e",
"typescript",
"testing",
"React Native"
],
"bugs": {
"url": "https://github.com/shoma-mano/maests/issues"
},
"homepage": "https://github.com/shoma-mano/maests#readme",
"license": "MIT",
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.2.3",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"typescript": "^5.5.4",
"get-tsconfig": "^4.8.1",
"jiti": "2.4.0",
"magicast": "^0.3.5",
"yaml": "^2.6.0"
},
"packageManager": "[email protected]+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724",
"pnpm": {
"patchedDependencies": {
"mkdist": "patches/mkdist.patch"
}
}
}