@nuasite/agent-summary 0.0.44 → 0.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +38 -34
package/package.json CHANGED
@@ -1,36 +1,40 @@
1
1
  {
2
- "name": "@nuasite/agent-summary",
3
- "description": "Create simple summary of the project for LLM.",
4
- "files": [
5
- "dist/**",
6
- "src/**",
7
- "README.md",
8
- "package.json"
9
- ],
10
- "homepage": "https://github.com/nuasite/nuasite/blob/main/packages/agent-summary/README.md",
11
- "repository": {
12
- "type": "git",
13
- "url": "git+https://github.com/nuasite/nuasite.git",
14
- "directory": "packages/agent-summary"
15
- },
16
- "license": "Apache-2.0",
17
- "version": "0.0.44",
18
- "module": "src/index.ts",
19
- "types": "src/index.ts",
20
- "type": "module",
21
- "dependencies": {
22
- "astro": "catalog:astro"
23
- },
24
- "devDependencies": {
25
- "@types/bun": "catalog:build"
26
- },
27
- "peerDependencies": {
28
- "typescript": "catalog:build"
29
- },
30
- "keywords": [
31
- "devtools",
32
- "nuasite",
33
- "tooling",
34
- "withastro"
35
- ]
2
+ "name": "@nuasite/agent-summary",
3
+ "description": "Create simple summary of the project for LLM.",
4
+ "files": [
5
+ "dist/**",
6
+ "src/**",
7
+ "README.md",
8
+ "package.json"
9
+ ],
10
+ "homepage": "https://github.com/nuasite/nuasite/blob/main/packages/agent-summary/README.md",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/nuasite/nuasite.git",
14
+ "directory": "packages/agent-summary"
15
+ },
16
+ "license": "Apache-2.0",
17
+ "version": "0.0.45",
18
+ "module": "src/index.ts",
19
+ "types": "src/index.ts",
20
+ "type": "module",
21
+ "dependencies": {
22
+ "astro": "^5.12.4"
23
+ },
24
+ "devDependencies": {
25
+ "@types/bun": "latest"
26
+ },
27
+ "peerDependencies": {
28
+ "typescript": "^5"
29
+ },
30
+ "scripts": {
31
+ "prepack": "bun run ../../scripts/workspace-deps/resolve-deps.ts",
32
+ "postpack": "bun run ../../scripts/workspace-deps/restore-deps.ts"
33
+ },
34
+ "keywords": [
35
+ "devtools",
36
+ "nuasite",
37
+ "tooling",
38
+ "withastro"
39
+ ]
36
40
  }