-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "bsky-comments-client",
"version": "0.1.0",
"description": "Privacy-respecting Bluesky comments as a zero-dependency web component, with an optional proxy mode that keeps reader IPs off Bluesky.",
"type": "module",
"license": "MIT",
"author": "Francisco Laplace",
"main": "./dist/bsky-comments.js",
"module": "./dist/bsky-comments.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/bsky-comments.js"
},
"./style.css": "./dist/bsky-comments.css"
},
"unpkg": "./dist/bsky-comments.min.js",
"jsdelivr": "./dist/bsky-comments.min.js",
"files": [
"dist",
"src",
"styles",
"LICENSE",
"README.md"
],
"sideEffects": [
"./dist/bsky-comments.js",
"./dist/bsky-comments.min.js",
"./src/index.ts"
],
"scripts": {
"typecheck": "tsc -p tsconfig.test.json",
"test": "vitest run",
"build": "node build.mjs && tsc --emitDeclarationOnly"
},
"keywords": [
"bluesky",
"atproto",
"at-protocol",
"comments",
"web-component",
"custom-element",
"privacy",
"static-site"
],
"repository": {
"type": "git",
"url": "git+https://github.com/laplacef/bsky-comments-client.git"
},
"homepage": "https://github.com/laplacef/bsky-comments-client#readme",
"bugs": {
"url": "https://github.com/laplacef/bsky-comments-client/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"esbuild": "^0.28.0",
"happy-dom": "^20.10.2",
"typescript": "^7.0.2",
"vitest": "^4.1.8"
}
}