-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 966 Bytes
/
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
{
"name": "bsky-widget",
"version": "0.1.1",
"description": "Profile Card / Widget for Bluesky",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"homepage": "https://bsky-widget.saurabhdaware.in/",
"scripts": {
"dev": "vite",
"build": "pnpm build:lib && pnpm build:playground",
"build:lib": "LIB=true vite build",
"build:playground": "vite build",
"preview": "pnpm build:lib && http-server ./ -p 8080",
"test": "pnpm test:e2e",
"test:e2e": "playwright test ",
"prepublishOnly": "pnpm build:lib"
},
"files": [
"dist/index.js"
],
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@playwright/test": "^1.48.2",
"@stackblitz/sdk": "^1.11.0",
"@types/node": "^22.9.0",
"abell": "1.0.0-beta.5",
"highlight.js": "^11.10.0",
"http-server": "^14.1.1",
"playwright": "^1.48.2",
"vite": "^5.4.10"
}
}