-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 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
{
"name": "obsidian-taskcard",
"version": "0.1.0",
"description": "Task formatter with card view.",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "node esbuild.config.mjs",
"build": "NODE_ENV=production node esbuild.config.mjs",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terryli710/Obsidian-TaskCard.git"
},
"keywords": [
"obsidian",
"svelte",
"typescript"
],
"author": "Terry Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/terryli710/Obsidian-TaskCard/issues"
},
"homepage": "https://github.com/terryli710/Obsidian-TaskCard#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@googleapis/docs": "^2.0.5",
"@jest/globals": "^29.6.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/svelte": "^4.0.3",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/svelte": "^5.0.0",
"@types/jest": "^29.5.3",
"@types/winston": "^2.4.4",
"builtin-modules": "^3.3.0",
"date-picker-svelte": "^2.6.0",
"esbuild": "^0.18.17",
"esbuild-jest": "^0.5.0",
"esbuild-svelte": "^0.7.4",
"jest": "^29.6.2",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"svelte-jester": "^3.0.0",
"svelte-preprocess": "^5.0.4",
"ts-jest": "^29.1.1"
},
"dependencies": {
"@ts-stack/markdown": "^1.5.0",
"googleapis": "^126.0.1",
"humanize-duration": "^3.30.0",
"humanized-duration": "^0.0.1",
"lucide-svelte": "^0.268.0",
"markdown-it": "^14.0.0",
"markdown-it-task-lists": "^2.1.1",
"obsidian": "latest",
"obsidian-dataview": "^0.5.56",
"parse-duration": "^1.1.0",
"runtypes": "^6.7.0",
"showdown": "^2.1.0",
"sugar": "^2.0.6",
"svelte": "^4.1.1",
"svelte-markdown": "^0.4.1",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"winston": "^3.10.0"
}
}