-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.12 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
{
"name": "angular-devtools",
"version": "0.0.0",
"type": "module",
"bin": {
"ng-devtools": "bin.mjs"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:angular-devtools": "node dist/angular-devtools/server/server.mjs",
"devtools:dev": "vite --config app/vite.config.ts",
"devtools:build": "vite build --config app/vite.config.ts",
"devtools:standalone": "node bin.mjs dev",
"devtools:mcp": "node bin.mjs mcp",
"devtools:report": "node bin.mjs build --outDir dist-report",
"devtools:build-pkg": "npx vite build --config app/vite.config.ts --outDir $PWD/packages/ng-devtools-assets/dist --emptyOutDir",
"devtools:publish": "pnpm devtools:build-pkg && cd packages/ng-devtools-assets && npm publish --access public && cd ../ng-devtools && npm publish --access public",
"extension:build": "pnpm devtools:build && rm -rf extension/ui && cp -r dist/devtools-ui extension/ui",
"extension:zip": "pnpm extension:build && cd extension && zip -r ../dist/ng-devtools-extension.zip . -x '*.DS_Store'"
},
"private": true,
"packageManager": "pnpm@10.33.4",
"dependencies": {
"@angular/common": "^22.1.0",
"@angular/compiler": "^22.1.0",
"@angular/core": "^22.1.0",
"@angular/forms": "^22.1.0",
"@angular/platform-browser": "^22.1.0",
"@angular/platform-server": "^22.1.0",
"@angular/router": "^22.1.0",
"@angular/ssr": "^22.1.8",
"@santoshyadavdev/ng-devtools": "workspace:*",
"devframe": "^1.0.0",
"express": "^5.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"valibot": "^1.5.0",
"zone.js": "^0.16.3"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.7.2",
"@angular/build": "^22.1.8",
"@angular/cli": "^22.1.8",
"@angular/compiler-cli": "^22.1.0",
"@devframes/agentic": "^1.0.0",
"@devframes/vite": "^1.0.0",
"@types/express": "^5.0.1",
"@types/node": "^20.17.19",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"typescript": "~6.0.2",
"vite": "^8.3.0",
"vitest": "^4.0.8"
}
}