-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "etch-weather",
"version": "1.0.0",
"description": "Etches weather forecasts into your local notes.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint .",
"svelte-check": "svelte-check --tsconfig tsconfig.json"
},
"keywords": [],
"license": "0-BSD",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@lucide/svelte": "^0.562.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/node": "^22.12.0",
"esbuild": "^0.27.2",
"esbuild-svelte": "^0.9.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "14.0.0",
"jiti": "^2.6.1",
"svelte": "^5.46.1",
"svelte-check": "^4.3.5",
"tslib": "^2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"dependencies": {
"@openmeteo/sdk": "^1.23.0",
"obsidian": "latest",
"openmeteo": "^1.2.3"
},
"prettier": {
"printWidth": 100
}
}