forked from
nekomimi.pet/wisp.place-monorepo
Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
1{
2 "name": "@wispplace/fs-utils",
3 "version": "1.0.0",
4 "private": true,
5 "type": "module",
6 "main": "./src/index.ts",
7 "types": "./src/index.ts",
8 "exports": {
9 ".": {
10 "types": "./src/index.ts",
11 "default": "./src/index.ts"
12 },
13 "./path": {
14 "types": "./src/path.ts",
15 "default": "./src/path.ts"
16 },
17 "./tree": {
18 "types": "./src/tree.ts",
19 "default": "./src/tree.ts"
20 },
21 "./manifest": {
22 "types": "./src/manifest.ts",
23 "default": "./src/manifest.ts"
24 },
25 "./subfs-split": {
26 "types": "./src/subfs-split.ts",
27 "default": "./src/subfs-split.ts"
28 },
29 "./redirects": {
30 "types": "./src/redirects.ts",
31 "default": "./src/redirects.ts"
32 }
33 },
34 "dependencies": {
35 "@atproto/api": "^0.18.17",
36 "@wispplace/atproto-utils": "workspace:*",
37 "@wispplace/lexicons": "workspace:*"
38 }
39}