-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 860 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 860 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
30
31
32
{
"name": "sp-dashboard",
"version": "1.0.1",
"description": "A visual dashboard plugin providing metrics, charts, and daily summaries of your tasks and tracked time.",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build:min": "./scripts/minify.sh sp-dashboard",
"check:syntax": "node scripts/check-js.js",
"screenshot": "node scripts/screenshot.js"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"html-minifier-terser": "^6.1.0",
"jsdom": "^23.0.0",
"puppeteer": "^24.37.5",
"vitest": "^1.0.4"
},
"keywords": [
"super-productivity",
"plugin",
"dashboard"
],
"author": "Super Productivity Community",
"license": "MIT",
"dependencies": {
"acorn": "^8.16.0"
}
}