forked from callumalpass/tasknotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.22 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tasknotes-fork",
"version": "4.3.2",
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
"main": "main.js",
"scripts": {
"build": "npm run build-css && node generate-release-notes-import.mjs && tsc -noEmit --skipLibCheck && node esbuild.config.mjs production",
"dev": "npm run build-css && node generate-release-notes-import.mjs && node esbuild.config.mjs",
"build:test": "npm run build && node copy-files.mjs",
"copy-files": "node copy-files.mjs",
"build-css": "node build-css.mjs",
"e2e": "playwright test",
"e2e:docs": "playwright test e2e/docs-screenshots.spec.ts",
"e2e:docs:copy": "mkdir -p media/docs && cp test-results/docs/*.png media/docs/",
"e2e:setup": "bash e2e-setup.sh",
"e2e:launch": "bash e2e-launch.sh",
"version": "node version-bump.mjs && node generate-release-notes-import.mjs && git add manifest.json versions.json src/releaseNotes.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:integration": "jest --config jest.integration.config.js",
"test:unit": "jest --testPathPatterns=unit",
"test:performance": "jest --testPathPatterns=performance --detectOpenHandles --passWithNoTests",
"test:build": "node -e \"console.log('Build test passed - plugin bundle created successfully')\"",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"typecheck": "tsc --noEmit",
"i18n:sync": "i18n-state sync",
"i18n:verify": "i18n-state verify",
"i18n:status": "i18n-state status",
"i18n:check-usage": "i18n-state check-usage",
"i18n:find-unused": "i18n-state find-unused",
"i18n:check-duplicates": "i18n-state check-duplicates",
"i18n:generate-template": "i18n-state generate-template"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^6.19.1",
"@codemirror/state": "^6.5.2",
"@electron/asar": "^3.4.1",
"@playwright/test": "^1.57.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/yaml": "^1.9.6",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.0.2",
"eslint-plugin-prettier": "^5.5.4",
"i18n-state-manager": "^0.1.0",
"jest": "^30.1.1",
"jest-environment-jsdom": "^30.1.1",
"monkey-around": "^3.0.0",
"obsidian": "latest",
"obsidian-typings": "^4.49.0",
"prettier": "^3.6.2",
"ts-jest": "^29.1.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@codemirror/view": "^6.37.2",
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/interaction": "^6.1.17",
"@fullcalendar/list": "^6.1.17",
"@fullcalendar/multimonth": "^6.1.17",
"@fullcalendar/timegrid": "^6.1.17",
"chrono-node": "^2.7.5",
"date-fns": "^4.1.0",
"ical.js": "^2.2.1",
"obsidian-daily-notes-interface": "^0.9.4",
"reflect-metadata": "^0.2.2",
"rrule": "^2.8.1",
"yaml": "^2.3.1"
}
}