-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 789 Bytes
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
{
"name": "twitterclip",
"version": "0.1.12",
"private": true,
"type": "module",
"description": "Capture X/Twitter posts and reply context from the native share menu.",
"license": "MIT",
"scripts": {
"build": "node scripts/build.mjs",
"dev": "node scripts/build.mjs --watch",
"test": "vitest run",
"test:e2e": "npm run build && playwright test",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"html-to-image": "1.11.13"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@types/chrome": "0.2.7",
"@types/node": "26.3.0",
"esbuild": "0.28.2",
"happy-dom": "20.11.6",
"typescript": "7.0.2",
"vitest": "4.1.11"
}
}