-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.03 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": "neighbouring-files",
"version": "1.1.4",
"description": "Navigate to the next and previous file in the current directory",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "jest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"preversion": "npm test",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "8.59.4",
"@typescript-eslint/parser": "8.63.0",
"esbuild": "0.28.1",
"eslint": "^10.6.0",
"eslint-plugin-obsidianmd": "^0.3.0",
"jest": "^30.4.2",
"obsidian": "1.13.1",
"prettier": "^3.8.3",
"ts-jest": "^29.4.11",
"tslib": "2.8.1",
"typescript": "^6.0.3"
}
}