-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1005 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1005 Bytes
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
{
"name": "@lucidlayer/reflex",
"version": "1.2.3",
"description": "Reflex CLI, Simulate real users and catch broken UX before launch.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"keywords": [
"cli",
"ux",
"ai",
"developer-tools",
"testing"
],
"author": "Lucid Layer",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/lucidlayer/reflex-cli.git"
},
"bin": {
"uxcheck": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@types/node": "^22.14.0",
"axios": "^1.8.4",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"ora": "^8.2.0",
"playwright": "^1.51.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0"
}
}