-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 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
{
"name": "@cyborgtests/test",
"version": "0.3.0",
"description": "Powerfull extension for Playwright, that allows you to include manual verification steps in your automated test flow",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"repository": {
"url": "https://github.com/CyborgTests/cyborg-test"
},
"scripts": {
"build:lib": "tsup",
"build:controlPanel": "npm run predev && vite build --config vite.config.app.ts",
"build:testBuilder": "npm run prebuild:testBuilder && vite build --config vite.config.testBuilder.ts",
"prepare": "npm run build:controlPanel && npm run build:lib && npm run build:testBuilder",
"predev": "node src/scripts/copy-html.js app",
"dev": "vite --config vite.config.app.ts",
"prebuild:testBuilder": "node src/scripts/copy-html.js generator",
"dev:testBuilder": "npm run prebuild:testBuilder && vite --config vite.config.testBuilder.ts",
"preview": "vite preview",
"postinstall": "node src/scripts/generate-uuid.js"
},
"keywords": [
"testing",
"cyborg tests",
"manual step",
"playwright"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"@playwright/test": "^1.54.2"
},
"devDependencies": {
"@heroui/react": "^2.8.1",
"@heroui/system": "^2.4.19",
"@heroui/theme": "^2.4.19",
"@medv/finder": "^4.0.2",
"@playwright/test": "^1.54.2",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^22.15.18",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.4",
"@vitejs/plugin-react": "^4.0.0",
"postcss-prefix-selector": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.11",
"tsup": "^8.5.0",
"typescript": "^5.0.0",
"vite": "^5.4.11",
"vite-plugin-singlefile": "^2.2.0"
},
"files": [
"dist",
"control-panel-build",
"test-builder-build",
"README.md",
"LICENSE",
"package.json",
"package-lock.json",
"src"
],
"dependencies": {
"react-hot-toast": "^2.6.0"
}
}