generated from obsidian-community/obsidian-preact-template
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
38 lines (38 loc) · 1.08 KB
/
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
37
38
{
"name": "buttons",
"version": "0.0.1",
"description": "Buttons for Obsidian",
"author": "shabegom",
"main": "main.js",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "yarn lint && rollup -c -w",
"build:nolint": "NODE_ENV=production rollup -c",
"build": "NODE_ENV=production npm run lint && rollup -c",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"@babel/runtime": "7.13.10",
"@popperjs/core": "^2.9.2",
"math-expression-evaluator": "^1.3.7",
"obsidian": "^0.12.0",
"tslib": "2.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "11.2.0",
"@rollup/plugin-replace": "2.4.1",
"@rollup/plugin-typescript": "8.2.0",
"@types/math-expression-evaluator": "^1.2.0",
"@types/node": "14.14.34",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel": "6.23.0",
"eslint": "7.22.0",
"rollup": "2.41.2",
"typescript": "4.2.3"
}
}