-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "@atshare/selector",
"version": "1.0.0",
"description": "Universal open social share selector for AT Protocol and ActivityPub networks",
"type": "module",
"main": "dist/atshare-selector.umd.cjs",
"module": "dist/atshare-selector.js",
"exports": {
".": {
"import": "./dist/atshare-selector.js",
"require": "./dist/atshare-selector.umd.cjs"
}
},
"files": [
"dist/atshare-selector.js",
"dist/atshare-selector.umd.cjs"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:callback": "BUILD_TARGET=callback vite build",
"build:demo": "BUILD_TARGET=demo vite build",
"build:proxy": "BUILD_TARGET=proxy vite build",
"build:all": "npm run build && npm run build:callback && npm run build:proxy && npm run build:demo",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@atproto/oauth-client-browser": "^0.3.0"
},
"devDependencies": {
"happy-dom": "^20.8.9",
"sharp": "^0.34.5",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"keywords": [
"atprotocol",
"activitypub",
"share",
"web-component",
"bluesky",
"mastodon",
"fediverse",
"share-button",
"social-sharing"
],
"license": "MIT",
"homepage": "https://atshare.social",
"repository": {
"type": "git",
"url": "https://github.com/rmichaelthomas/atshare.git"
}
}