-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.42 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
{
"name": "autoply",
"version": "1.0.0",
"type": "module",
"bin": {
"autoply": "./src/cli/index.ts"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"api": "bun run src/api/server.ts",
"dev:api": "bun --watch src/api/server.ts",
"extension:build": "vite build",
"extension:build:firefox": "TARGET=firefox vite build",
"extension:dev": "vite",
"start": "bun run src/cli/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"build": "bun build ./src/cli/index.ts --compile --outfile dist/autoply --external playwright --external playwright-core --external @sparticuz/chromium --external patchright --external patchright-core",
"build:all": "bun run build:linux && bun run build:mac && bun run build:windows",
"build:linux": "bun build ./src/cli/index.ts --compile --target=bun-linux-x64 --outfile dist/autoply-linux-x64 --external playwright --external playwright-core --external @sparticuz/chromium --external patchright --external patchright-core",
"build:mac": "bun build ./src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile dist/autoply-darwin-arm64 --external playwright --external playwright-core --external @sparticuz/chromium --external patchright --external patchright-core",
"build:mac-intel": "bun build ./src/cli/index.ts --compile --target=bun-darwin-x64 --outfile dist/autoply-darwin-x64 --external playwright --external playwright-core --external @sparticuz/chromium --external patchright --external patchright-core",
"build:windows": "bun build ./src/cli/index.ts --compile --target=bun-windows-x64 --outfile dist/autoply-windows-x64.exe --external playwright --external playwright-core --external @sparticuz/chromium --external patchright --external patchright-core"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/bun": "latest",
"@types/chrome": "^0.1.37",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"bun-types": "latest",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.5.8",
"prettier": "^3.2.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.0.0",
"vite": "^8.0.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^9.4.0",
"@fastify/static": "^9.0.0",
"@inquirer/prompts": "^7.0.0",
"@sparticuz/chromium": "^123.0.0",
"ai": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"fastify": "^5.8.2",
"keytar": "^7.9.0",
"lucide-react": "^0.577.0",
"marked": "^11.0.0",
"ora": "^8.0.0",
"p-retry": "^8.0.0",
"patchright": "^1.58.2",
"pdf-lib": "^1.17.0",
"pdf-parse": "1.1.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"playwright-core": "^1.40.0",
"rate-limiter-flexible": "^10.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@tanstack/react-query": "^5.74.0",
"zod": "^3.22.0"
}
}