-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "extended-task-lists",
"version": "1.0.14",
"description": "Extended reader view support for task lists, including in-progress and won't do task items.",
"main": "main.js",
"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",
"test": "jest --verbose ./src",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'src/**' '*.ts' '*.mjs' '*.css'",
"format:check": "prettier --check 'src/**' '*.ts' '*.mjs' '*.css'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"esbuild": "^0.28.0",
"eslint-plugin-obsidianmd": "^0.3.0",
"jest": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.8.3",
"ts-jest": "^29.1.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"ts-node": "^10.9.2"
}
}