-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
36 lines (36 loc) · 967 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
28
29
30
31
32
33
34
35
36
{
"name": "obsidian-url-into-selection",
"version": "1.7.0",
"description": "Paste URL \"into\" selected text",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"release": "standard-version"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"assert-never": "^1.2.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"file-url": "^4.0.0",
"obsidian": "0.13.11",
"prettier": "2.1.2",
"rollup": "^2.32.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"standard-version": "^9.0.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3",
"url-parse": "^1.5.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}