alpha
Login
or
Join now
tokono.ma
/
diffuse-applets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Experiment to rebuild Diffuse using web applets.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: manifest actions + s3 prep
author
Steven Vandevelde
date
1 year ago
(May 24, 2025, 2:36 PM +0200)
commit
0bb662e7
0bb662e7a3450d164ace5f53e32c1e1dd32f264a
parent
84b4091d
84b4091d9ad27b5cd7fd30ccba7f1f4b6dacf976
+24
-4
5 changed files
Expand all
Collapse all
Unified
Split
.npmrc
package-lock.json
package.json
src
pages
orchestrator
input-cache
_manifest.json
output-management
_manifest.json
+1
.npmrc
Reviewed
···
1
1
+
@jsr:registry=https://npm.jsr.io
+7
package-lock.json
Reviewed
···
6
6
"": {
7
7
"dependencies": {
8
8
"@atcute/cid": "^2.2.2",
9
9
+
"@bradenmacdonald/s3-lite-client": "npm:@jsr/bradenmacdonald__s3-lite-client@^0.9.0",
9
10
"@picocss/pico": "^2.1.1",
10
11
"@web-applets/sdk": "https://gitpkg.vercel.app/unternet-co/web-applets/sdk?tokono.ma/experiment&scripts.postinstall=npm%20i%20%40types%2Fnode%20%26%26%20npx%20tsc",
11
12
"98.css": "^0.1.21",
···
182
183
"engines": {
183
184
"node": ">=6.9.0"
184
185
}
186
186
+
},
187
187
+
"node_modules/@bradenmacdonald/s3-lite-client": {
188
188
+
"name": "@jsr/bradenmacdonald__s3-lite-client",
189
189
+
"version": "0.9.0",
190
190
+
"resolved": "https://npm.jsr.io/~/11/@jsr/bradenmacdonald__s3-lite-client/0.9.0.tgz",
191
191
+
"integrity": "sha512-EMuyyi6UPcr/ILsf13illKH+YlF16LnwIPptqs/LLUr/GHrMtEG5QzoLZZ0bXr3njk+v5/vIMJq4eNar3k2niQ=="
185
192
},
186
193
"node_modules/@capsizecss/unpack": {
187
194
"version": "2.4.0",
+1
-2
package.json
Reviewed
···
1
1
{
2
2
"dependencies": {
3
3
-
"@atcute/cid": "^2.2.2",
3
3
+
"@bradenmacdonald/s3-lite-client": "npm:@jsr/bradenmacdonald__s3-lite-client@^0.9.0",
4
4
"@picocss/pico": "^2.1.1",
5
5
"@web-applets/sdk": "https://gitpkg.vercel.app/unternet-co/web-applets/sdk?tokono.ma/experiment&scripts.postinstall=npm%20i%20%40types%2Fnode%20%26%26%20npx%20tsc",
6
6
-
"98.css": "^0.1.21",
7
6
"iconoir": "^7.11.0",
8
7
"idb-keyval": "^6.2.1",
9
8
"music-metadata": "^11.2.3",
+6
-1
src/pages/orchestrator/input-cache/_manifest.json
Reviewed
···
2
2
"name": "diffuse/orchestrator/input-cache",
3
3
"title": "Diffuse Orchestrator | Input cache",
4
4
"entrypoint": "index.html",
5
5
-
"actions": {}
5
5
+
"actions": {
6
6
+
"process": {
7
7
+
"title": "Process",
8
8
+
"description": "Process inputs; listing all tracks, fetching metadata where needed and passing the result to the output manager."
9
9
+
}
10
10
+
}
6
11
}
+9
-1
src/pages/orchestrator/output-management/_manifest.json
Reviewed
···
4
4
"entrypoint": "index.html",
5
5
"actions": {
6
6
"tracks": {
7
7
-
"description": "Manage tracks."
7
7
+
"title": "Tracks",
8
8
+
"description": "Manage tracks.",
9
9
+
"params_schema": {
10
10
+
"type": "array",
11
11
+
"description": "A list of tracks",
12
12
+
"items": {
13
13
+
"type": "object"
14
14
+
}
15
15
+
}
8
16
}
9
17
}
10
18
}