-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 KB
/
package.json
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
{
"name": "obsidian-timeline-schedule",
"version": "1.2.1",
"description": "",
"main": "main.js",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "npm run dev",
"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",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "Evan Bonsignori",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/timestring": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@codemirror/language": "^6.9.0",
"@codemirror/view": "^6.17.0",
"timestring": "^7.0.0"
}
}