-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 736 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 736 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
{
"name": "agenticlens",
"version": "0.2.4",
"private": false,
"bin": {
"agenticlens": "./cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/amitmishrg/agenticlens.git"
},
"main": "./cli/index.js",
"files": [
"cli/**",
"web/dist/**"
],
"workspaces": [
"cli",
"web"
],
"scripts": {
"prepack": "npm run build --workspace=web",
"build": "npm run build --workspace=web",
"dev": "npm run dev --workspace=web",
"start": "node cli/index.js",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"express": "^4.18.2",
"open": "^9.1.0"
},
"devDependencies": {
"prettier": "^3.5.3"
}
}