-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"packageManager": "[email protected]",
"private": true,
"type": "module",
"name": "bluesky-archiver",
"scripts": {
"dev": "vite",
"build": "tsc && pnpm run gen && vite build",
"publish": "pnpm run build && scripts/publish.sh",
"gen": "wireit",
"preview": "vite preview",
"fmt": "prettier --cache --write ."
},
"wireit": {
"gen": {
"dependencies": [
"gen:archive_css",
"gen:archive_search_js"
]
},
"gen:archive_css": {
"command": "tailwindcss -i src_templates/styles/index.css -o public/archive_assets/style.css --minify",
"files": [
"src_templates/styles/**/*.css"
],
"output": [
"public/archive_assets/style.css"
]
},
"gen:archive_search_js": {
"command": "esbuild src_templates/scripts/search.js --bundle --format=iife --outfile=public/archive_assets/search.js --minify-syntax --minify-whitespace",
"files": [
"src_templates/scripts/search.js",
"src_templates/scripts/dependencies/**/*.js"
],
"output": [
"public/archive_assets/search.js"
]
}
},
"dependencies": {
"@akryum/flexsearch-es": "^0.7.32",
"@ipld/car": "^5.3.0",
"@ipld/dag-cbor": "^9.2.0",
"@mary/bluesky-client": "npm:@jsr/mary__bluesky-client@^0.5.17",
"multiformats": "^12.1.3",
"native-file-system-adapter": "^3.0.1",
"p-map": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-syntax-typescript": "^7.24.6",
"@intrnl/jsx-to-string": "^0.1.6",
"@minify-html/node": "0.11.1",
"@rollup/plugin-babel": "^6.0.4",
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.19",
"esbuild": "^0.19.12",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"wireit": "^0.14.4"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}