-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 818 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 818 Bytes
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
{
"name": "obsidian-emoji-magic",
"version": "0.2.2",
"description": "",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"version": "node version-bump.mjs && git add . && git commit -m 'bump' && git tag -a $npm_package_version -m \"$npm_package_version\" && git push origin $npm_package_version"
},
"keywords": [],
"author": "",
"license": "APACHE",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.14.2",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "2.32.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {}
}