-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
27 lines (27 loc) · 854 Bytes
/
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
{
"name": "obsidian-filename-heading-sync",
"version": "1.0.0",
"description": "Obsidian plugin for keeping the filename with the first heading of a file in sync",
"main": "main.js",
"type": "commonjs",
"scripts": {
"dev": "rollup --config rollup.config.js --bundleConfigAsCjs -w",
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"format": "npx prettier --config .prettierrc --write *.ts",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"jest": "^29.7.0",
"obsidian": "^1.7.2",
"prettier": "^3.4.2",
"rollup": "^4.29.2",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}