-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.89 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.89 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
{
"name": "bases-charts",
"version": "0.0.11",
"description": "",
"main": "main.js",
"scripts": {
"dev": "vite build --mode=development --watch",
"build": "vite build --mode=production",
"tsc": "tsc -noEmit -skipLibCheck",
"test": "bun test",
"test:log": "LOG_TESTS=true bun test",
"format": "prettier --write --plugin prettier-plugin-svelte .",
"format:check": "prettier --check --plugin prettier-plugin-svelte .",
"lint": "eslint --max-warnings=0 packages/** --no-warn-ignored",
"lint:fix": "eslint --max-warnings=0 --fix packages/** --no-warn-ignored",
"svelte-check": "svelte-check --compiler-warnings \"unused-export-let:ignore\"",
"check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test",
"check:fix": "bun run format && bun run tsc && bun run svelte-check && bun run lint:fix && bun run test",
"release": "bun run automation/release.ts",
"stats": "bun run automation/stats.ts"
},
"keywords": [],
"author": "Moritz Jung",
"license": "GPL-3.0",
"devDependencies": {
"@happy-dom/global-registrator": "^20.0.11",
"@lemons_dev/parsinom": "^0.1.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/bun": "^1.3.4",
"builtin-modules": "^5.0.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-isaacscript": "^4.0.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-obsidianmd": "^0.1.9",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-svelte": "^3.13.1",
"neat-csv": "^7.0.0",
"obsidian": "latest",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"string-argv": "^0.3.2",
"svelte": "^5.46.0",
"svelte-check": "^4.3.4",
"svelte-preprocess": "^6.0.3",
"svelteplot": "^0.8.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-static-copy": "^3.1.4"
}
}