@aigne/afs-explorer 1.1.0-beta → 1.11.0-beta

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.
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>AFS Explorer</title>
8
- <script type="module" crossorigin src="/assets/index-viceiJOt.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-C3YiCz2W.js"></script>
9
9
  </head>
10
10
  <body>
11
11
  <div id="root"></div>
package/package.json CHANGED
@@ -1,60 +1,43 @@
1
1
  {
2
2
  "name": "@aigne/afs-explorer",
3
- "version": "1.1.0-beta",
3
+ "version": "1.11.0-beta",
4
4
  "description": "Explore and manage AFS file systems",
5
+ "license": "Elastic-2.0",
5
6
  "publishConfig": {
6
7
  "access": "public"
7
8
  },
8
- "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
9
- "homepage": "https://www.aigne.io/framework",
10
- "license": "Elastic-2.0",
9
+ "author": "Arcblock <blocklet@arcblock.io> https://github.com/arcblock",
10
+ "homepage": "https://github.com/arcblock/afs",
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git+https://github.com/AIGNE-io/aigne-framework"
13
+ "url": "git+https://github.com/arcblock/afs"
14
14
  },
15
15
  "bugs": {
16
- "url": "https://github.com/AIGNE-io/aigne-framework/issues"
16
+ "url": "https://github.com/arcblock/afs/issues"
17
+ },
18
+ "type": "module",
19
+ "main": "./dist/index.cjs",
20
+ "module": "./dist/index.mjs",
21
+ "types": "./dist/index.d.cts",
22
+ "exports": {
23
+ ".": {
24
+ "require": "./dist/index.cjs",
25
+ "import": "./dist/index.mjs"
26
+ },
27
+ "./*": "./*",
28
+ "./index.html": "./html/index.html"
17
29
  },
18
30
  "files": [
19
- "lib/cjs",
20
- "lib/dts",
21
- "lib/esm",
22
31
  "dist",
32
+ "html",
23
33
  "LICENSE",
24
34
  "README.md",
25
35
  "CHANGELOG.md"
26
36
  ],
27
- "type": "module",
28
- "main": "./lib/cjs/index.js",
29
- "module": "./lib/esm/index.js",
30
- "types": "./lib/dts/index.d.ts",
31
- "exports": {
32
- ".": {
33
- "types": "./lib/dts/index.d.ts",
34
- "import": "./lib/esm/index.js",
35
- "require": "./lib/cjs/index.js"
36
- },
37
- "./index.html": "./dist/index.html",
38
- "./*": {
39
- "types": "./lib/dts/*",
40
- "import": "./lib/esm/*",
41
- "require": "./lib/cjs/*"
42
- }
43
- },
44
- "typesVersions": {
45
- "*": {
46
- ".": [
47
- "./lib/dts/index.d.ts"
48
- ]
49
- }
50
- },
51
37
  "dependencies": {
52
38
  "cors": "^2.8.5",
53
39
  "express": "^5.1.0",
54
- "yaml": "^2.8.1",
55
- "zod": "^3.25.67",
56
- "@aigne/afs": "^1.4.0-beta.11",
57
- "@aigne/core": "^1.72.0-beta.25"
40
+ "@aigne/afs": "^1.11.0-beta"
58
41
  },
59
42
  "devDependencies": {
60
43
  "@emotion/react": "^11.14.0",
@@ -79,24 +62,23 @@
79
62
  "react-syntax-highlighter": "^16.1.0",
80
63
  "remark-gfm": "^4.0.1",
81
64
  "rimraf": "^6.0.1",
65
+ "tsdown": "0.20.0-beta.3",
82
66
  "typescript": "^5.9.2",
83
67
  "vite": "^7.1.5",
84
- "vite-plugin-svgr": "^4.3.0",
85
- "@aigne/afs-git": "^1.1.0-beta",
86
- "@aigne/afs-history": "^1.2.0-beta.12",
87
- "@aigne/afs-json": "^1.1.0-beta",
88
- "@aigne/afs-local-fs": "^1.4.0-beta.26",
89
- "@aigne/test-utils": "^0.5.69-beta.25"
68
+ "@aigne/afs-json": "^1.11.0-beta",
69
+ "@aigne/afs-local-fs": "^1.11.0-beta",
70
+ "@aigne/scripts": "0.0.0",
71
+ "@aigne/afs-git": "^1.11.0-beta",
72
+ "@aigne/typescript-config": "0.0.0"
90
73
  },
91
74
  "scripts": {
92
- "lint": "tsc --noEmit",
93
75
  "build": "run-s build:web build:lib",
94
- "build:lib": "tsc --build scripts/tsconfig.build.json",
76
+ "build:lib": "tsdown",
95
77
  "build:web": "vite build",
96
- "dev": "vite",
97
- "clean": "rimraf lib test/coverage dist",
78
+ "dev:web": "vite",
79
+ "check-types": "tsc --noEmit",
80
+ "clean": "rimraf dist coverage html",
98
81
  "test": "bun test",
99
- "test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text",
100
- "postbuild": "node ../../scripts/post-build-lib.mjs"
82
+ "test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text"
101
83
  }
102
84
  }
package/CHANGELOG.md DELETED
@@ -1,48 +0,0 @@
1
- # Changelog
2
-
3
- ## [1.1.0-beta](https://github.com/AIGNE-io/aigne-framework/compare/afs-explorer-v1.0.0...afs-explorer-v1.1.0-beta) (2026-01-16)
4
-
5
-
6
- ### Features
7
-
8
- * **afs:** add explorer for AFS ([97ebe2d](https://github.com/AIGNE-io/aigne-framework/commit/97ebe2de59fb4ac4a5e5dea51b027a02ee69638d))
9
-
10
-
11
- ### Bug Fixes
12
-
13
- * **afs:** improve explorer server with SPA routing and global error handler ([865c160](https://github.com/AIGNE-io/aigne-framework/commit/865c1601e2a0d9e481f260d150cb3210aef622fb))
14
-
15
-
16
- ### Dependencies
17
-
18
- * The following workspace dependencies were updated
19
- * dependencies
20
- * @aigne/afs bumped to 1.4.0-beta.11
21
- * @aigne/core bumped to 1.72.0-beta.25
22
- * devDependencies
23
- * @aigne/afs-git bumped to 1.1.0-beta
24
- * @aigne/afs-history bumped to 1.2.0-beta.12
25
- * @aigne/afs-json bumped to 1.1.0-beta
26
- * @aigne/afs-local-fs bumped to 1.4.0-beta.26
27
- * @aigne/test-utils bumped to 0.5.69-beta.25
28
-
29
- ## 1.0.0 (2026-01-16)
30
-
31
-
32
- ### Features
33
-
34
- * **afs:** add explorer for AFS ([97ebe2d](https://github.com/AIGNE-io/aigne-framework/commit/97ebe2de59fb4ac4a5e5dea51b027a02ee69638d))
35
-
36
-
37
- ### Dependencies
38
-
39
- * The following workspace dependencies were updated
40
- * dependencies
41
- * @aigne/afs bumped to 1.4.0-beta.10
42
- * @aigne/core bumped to 1.72.0-beta.24
43
- * devDependencies
44
- * @aigne/afs-git bumped to 1.0.0
45
- * @aigne/afs-history bumped to 1.2.0-beta.11
46
- * @aigne/afs-json bumped to 1.0.0
47
- * @aigne/afs-local-fs bumped to 1.4.0-beta.25
48
- * @aigne/test-utils bumped to 0.5.69-beta.24