-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.88 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
61
62
{
"name": "annoteca",
"version": "1.15.0",
"description": "Categorized inline feedback comments for long-form markdown documents. Plain HTML storage, threaded AI conversations, readable by humans and any AI assistant. Works on desktop and mobile.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"typecheck:marketplace": "tsc --noEmit -p tsconfig.scan.json",
"lint": "eslint . --max-warnings 0 && prettier --check \"**/*.ts\" && node scripts/check-submission.mjs && npm run typecheck:marketplace",
"test": "jest",
"knip": "knip",
"type-coverage": "type-coverage",
"test:mutation": "stryker run",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky"
},
"typeCoverage": {
"atLeast": 99
},
"keywords": [],
"author": "Charles Kelsoe (ckelsoe)",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.38.6",
"@eslint/js": "^9.39.2",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/jest-runner": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.7",
"esbuild": "^0.28.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.4.1",
"eslint-plugin-sonarjs": "^4.2.0",
"globals": "^17.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.4.1",
"jiti": "^2.6.1",
"knip": "^6.32.0",
"obsidian": "^1.13.0",
"prettier": "^3.9.6",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"type-coverage": "^2.30.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"overrides": {
"handlebars": "^4.7.9",
"qs": "^6.15.2",
"picomatch": "^2.3.2",
"flatted": "^3.4.0",
"brace-expansion@1": "^1.1.18",
"brace-expansion@2": "^2.1.4",
"js-yaml": "^4.3.1",
"@babel/core": "^7.29.6"
}
}