-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 KB
/
package.json
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
{
"name": "obsidian-timekeep",
"version": "1.9.0",
"description": "Obsidian plugin for time tracking",
"main": "main.js",
"scripts": {
"dev": "obsidian-plugin dev --esbuild-config=esbuild.config.js --vault-path=test-vault --with-stylesheet src/styles.css src/main.ts",
"build": "obsidian-plugin build --esbuild-config=esbuild.config.js --with-stylesheet src/styles.css src/main.ts",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint src",
"format": "prettier -w src",
"test": "jest --coverage"
},
"keywords": [],
"author": "Jacobtread",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16.11.6",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.20.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^2.9.0",
"jest": "^29.7.0",
"obsidian": "latest",
"obsidian-plugin-cli": "^0.9.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "4.7.4"
},
"dependencies": {
"@react-pdf/renderer": "^3.4.0",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^11.0.5",
"zod": "^3.22.4"
}
}