-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.37 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.37 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
{
"name": "@redstone-md/mapr",
"version": "0.0.8-alpha",
"type": "module",
"description": "Bun-native CLI/TUI for reverse-engineering frontend websites, bundles, WASM, and service workers",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/redstone-md/Mapr.git"
},
"homepage": "https://github.com/redstone-md/Mapr",
"bugs": {
"url": "https://github.com/redstone-md/Mapr/issues"
},
"keywords": [
"bun",
"cli",
"tui",
"reverse-engineering",
"javascript",
"frontend",
"wasm",
"service-worker",
"ai"
],
"engines": {
"bun": ">=1.3.9"
},
"bin": {
"mapr": "./bin/mapr"
},
"files": [
"assets",
"bin",
"index.ts",
"lib",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "bun run index.ts",
"test": "bun test",
"check": "bunx tsc --noEmit",
"prepublishOnly": "bun test && bunx tsc --noEmit"
},
"dependencies": {
"@ai-sdk/openai": "3.0.41",
"@ai-sdk/openai-compatible": "2.0.35",
"@clack/prompts": "1.1.0",
"ai": "6.0.116",
"cheerio": "1.2.0",
"happy-dom": "^20.8.4",
"picocolors": "1.1.1",
"playwright": "^1.58.2",
"prettier": "3.8.1",
"zod": "4.3.6"
},
"devDependencies": {
"bun-types": "1.3.10",
"typescript": "5.9.3"
}
}