-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "bluesky-profile-feed-embed",
"version": "1.0.4",
"description": "Custom element for embedding Bluesky profile feeds",
"license": "MIT",
"author": "externdefs",
"repository": {
"type": "git",
"url": "https://github.com/mary-ext/bluesky-embed",
"directory": "packages/bluesky-profile-feed-embed"
},
"files": [
"dist/",
"themes/"
],
"type": "module",
"exports": {
".": "./dist/wc.js",
"./core": "./dist/core.js",
"./style.css": "./dist/core.css",
"./themes/*": "./themes/*"
},
"scripts": {
"dev": "tsdown --watch",
"build": "pnpm run check && tsdown && rsync -aHAX --delete ../../themes/ themes/",
"check": "svelte-check --tsgo --tsconfig ./tsconfig.lib.json && tsc -p tsconfig.node.json",
"prepack": "pnpm run build"
},
"dependencies": {
"@atcute/bluesky": "^2.1.1",
"@atcute/bluesky-richtext-segmenter": "^2.0.4",
"@atcute/client": "^3.1.0"
},
"devDependencies": {
"@tsconfig/svelte": "^5.0.6",
"@tsdown/css": "^0.22.14",
"@types/node": "^24.10.1",
"internal": "workspace:^",
"svelte": "catalog:",
"svelte-check": "^4.7.4",
"tsdown": "^0.22.14"
}
}