-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "better-tasks",
"version": "1.0.0",
"description": "Implement task management within Roam Research, including dated and recurring tasks.",
"main": "index.js",
"scripts": {
"check:i18n": "node scripts/check-i18n-parity.js",
"check:i18n:values": "node scripts/check-i18n-parity.js --values",
"check:release": "node scripts/check-i18n-parity.js --values --strict && npm test",
"test": "node --test tests/*.test.mjs",
"build": "npm run check:i18n && npm test && webpack",
"build:watch": "npm run check:i18n && npm test && webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlava/better-tasks.git"
},
"bugs": {
"url": "https://github.com/mlava/better-tasks/issues"
},
"homepage": "https://github.com/mlava/better-tasks#readme",
"author": "Mark Lavercombe",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@tanstack/react-virtual": "^3.10.7",
"babel-loader": "^9.2.1",
"baseline-browser-mapping": "^2.9.11",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"izitoast": "^1.4.0"
},
"overrides": {
"@tanstack/react-virtual": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"keywords": [
"task",
"todo",
"recurring",
"repeating",
"gtd",
"snooze",
"defer"
]
}