@aigne/afs-explorer 1.1.0 → 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.
- package/README.md +6 -1
- package/dist/index.cjs +126 -0
- package/dist/index.d.cts +35 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +35 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +96 -0
- package/dist/index.mjs.map +1 -0
- package/html/assets/index-C3YiCz2W.js +191 -0
- package/{dist → html}/index.html +1 -1
- package/package.json +31 -49
- package/CHANGELOG.md +0 -64
- package/dist/assets/index-viceiJOt.js +0 -271
- package/lib/cjs/index.d.ts +0 -10
- package/lib/cjs/index.js +0 -17
- package/lib/cjs/package.json +0 -3
- package/lib/cjs/server.d.ts +0 -21
- package/lib/cjs/server.js +0 -95
- package/lib/dts/index.d.ts +0 -10
- package/lib/dts/server.d.ts +0 -21
- package/lib/esm/index.d.ts +0 -10
- package/lib/esm/index.js +0 -13
- package/lib/esm/package.json +0 -3
- package/lib/esm/server.d.ts +0 -21
- package/lib/esm/server.js +0 -88
package/{dist → html}/index.html
RENAMED
|
@@ -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-
|
|
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.
|
|
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/
|
|
9
|
-
"homepage": "https://
|
|
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/
|
|
13
|
+
"url": "git+https://github.com/arcblock/afs"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
16
|
-
"url": "https://github.com/
|
|
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
|
-
"
|
|
55
|
-
"zod": "^3.25.67",
|
|
56
|
-
"@aigne/afs": "^1.4.0",
|
|
57
|
-
"@aigne/core": "^1.72.0"
|
|
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
|
-
"
|
|
85
|
-
"@aigne/afs-
|
|
86
|
-
"@aigne/
|
|
87
|
-
"@aigne/afs-
|
|
88
|
-
"@aigne/
|
|
89
|
-
"@aigne/test-utils": "^0.5.69"
|
|
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": "
|
|
76
|
+
"build:lib": "tsdown",
|
|
95
77
|
"build:web": "vite build",
|
|
96
|
-
"dev": "vite",
|
|
97
|
-
"
|
|
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,64 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [1.1.0](https://github.com/AIGNE-io/aigne-framework/compare/afs-explorer-v1.1.0-beta...afs-explorer-v1.1.0) (2026-01-16)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Dependencies
|
|
7
|
-
|
|
8
|
-
* The following workspace dependencies were updated
|
|
9
|
-
* dependencies
|
|
10
|
-
* @aigne/afs bumped to 1.4.0
|
|
11
|
-
* @aigne/core bumped to 1.72.0
|
|
12
|
-
* devDependencies
|
|
13
|
-
* @aigne/afs-git bumped to 1.1.0
|
|
14
|
-
* @aigne/afs-history bumped to 1.2.0
|
|
15
|
-
* @aigne/afs-json bumped to 1.1.0
|
|
16
|
-
* @aigne/afs-local-fs bumped to 1.4.0
|
|
17
|
-
* @aigne/test-utils bumped to 0.5.69
|
|
18
|
-
|
|
19
|
-
## [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)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### Features
|
|
23
|
-
|
|
24
|
-
* **afs:** add explorer for AFS ([97ebe2d](https://github.com/AIGNE-io/aigne-framework/commit/97ebe2de59fb4ac4a5e5dea51b027a02ee69638d))
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Bug Fixes
|
|
28
|
-
|
|
29
|
-
* **afs:** improve explorer server with SPA routing and global error handler ([865c160](https://github.com/AIGNE-io/aigne-framework/commit/865c1601e2a0d9e481f260d150cb3210aef622fb))
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Dependencies
|
|
33
|
-
|
|
34
|
-
* The following workspace dependencies were updated
|
|
35
|
-
* dependencies
|
|
36
|
-
* @aigne/afs bumped to 1.4.0-beta.11
|
|
37
|
-
* @aigne/core bumped to 1.72.0-beta.25
|
|
38
|
-
* devDependencies
|
|
39
|
-
* @aigne/afs-git bumped to 1.1.0-beta
|
|
40
|
-
* @aigne/afs-history bumped to 1.2.0-beta.12
|
|
41
|
-
* @aigne/afs-json bumped to 1.1.0-beta
|
|
42
|
-
* @aigne/afs-local-fs bumped to 1.4.0-beta.26
|
|
43
|
-
* @aigne/test-utils bumped to 0.5.69-beta.25
|
|
44
|
-
|
|
45
|
-
## 1.0.0 (2026-01-16)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Features
|
|
49
|
-
|
|
50
|
-
* **afs:** add explorer for AFS ([97ebe2d](https://github.com/AIGNE-io/aigne-framework/commit/97ebe2de59fb4ac4a5e5dea51b027a02ee69638d))
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Dependencies
|
|
54
|
-
|
|
55
|
-
* The following workspace dependencies were updated
|
|
56
|
-
* dependencies
|
|
57
|
-
* @aigne/afs bumped to 1.4.0-beta.10
|
|
58
|
-
* @aigne/core bumped to 1.72.0-beta.24
|
|
59
|
-
* devDependencies
|
|
60
|
-
* @aigne/afs-git bumped to 1.0.0
|
|
61
|
-
* @aigne/afs-history bumped to 1.2.0-beta.11
|
|
62
|
-
* @aigne/afs-json bumped to 1.0.0
|
|
63
|
-
* @aigne/afs-local-fs bumped to 1.4.0-beta.25
|
|
64
|
-
* @aigne/test-utils bumped to 0.5.69-beta.24
|