-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.08 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
{
"name": "timestamp-link",
"version": "0.1.1",
"description": "Copy timestamped links to blocks, headings and notes.",
"type": "module",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production && cp manifest.json build/",
"preversion": "npm run build",
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/",
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js build/manifest.json"
},
"version-tag-prefix": "",
"keywords": [],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^14.14.37",
"obsidian": "^0.12.0",
"rollup": "^4.28.0",
"tslib": "^2.2.0",
"typescript": "^5.6.0",
"moment": "^2.29.4"
},
"dependencies": {}
}