-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "dynamic-views",
"version": "0.14.0",
"description": "Elegant grid and masonry card views for Bases and Datacore.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"css": "sass styles/main.scss styles.css --style=expanded --no-source-map",
"css:watch": "sass styles/main.scss styles.css --style=expanded --no-source-map --watch",
"build": "npm run css && node esbuild.config.mjs production",
"preversion": "node version-bump.mjs --preflight",
"version": "node version-bump.mjs",
"postversion": "git push origin main --follow-tags --force-with-lease",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"knip": "knip"
},
"knip": {
"ignore": [
"archive/**",
"styles/**"
],
"ignoreDependencies": [
"obsidian",
"prettier",
"sass"
],
"ignoreBinaries": [
"knip",
"sass",
"vitest"
],
"ignoreExportsUsedInFile": true
},
"keywords": [],
"author": "churnish",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "^17.4.0",
"jsdom": "^25.0.1",
"knip": "^5.85.0",
"obsidian": "^1.11.4",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.0"
},
"dependencies": {
"@panzoom/panzoom": "^4.6.1"
}
}