-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "obsidian-clipper-templates",
"version": "1.0.0",
"description": "Obsidian Clipper templates with E2E tests",
"private": true,
"type": "module",
"scripts": {
"test": "playwright test --config=src/test/playwright/playwright.config.ts",
"test:ui": "playwright test --config=src/test/playwright/playwright.config.ts --headed",
"test:debug": "playwright test --config=src/test/playwright/playwright.config.ts --debug",
"trim-and-sanitize-hars": "node scripts/trim-and-sanitize-har.mjs",
"build-clipper-extension": "cd 'Other READONLY Sources To Aid With debugging/obsidian-clipper' && npm install && npm run build:chrome"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/node": "^22.5.4"
}
}