-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 929 Bytes
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
{
"name": "hypernovum",
"private": true,
"workspaces": [
"packages/core",
"packages/obsidian-plugin"
],
"scripts": {
"build": "npm run check:versions && npm run build:core && npm run build:plugin",
"build:core": "npm run build -w packages/core",
"build:plugin": "npm run gen:heartbeat && npm run build -w packages/obsidian-plugin",
"dev": "npm run gen:heartbeat && npm run dev -w packages/obsidian-plugin",
"gen:heartbeat": "node scripts/gen-heartbeat-source.mjs",
"lint": "eslint packages/core/src packages/obsidian-plugin/src",
"typecheck": "tsc --build",
"check:versions": "node scripts/check-versions.mjs",
"test": "vitest run"
},
"author": "Randall Morgan",
"license": "AGPL-3.0-only",
"devDependencies": {
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.4.0",
"jiti": "^2.6.1",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.10"
}
}