-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
31
32
33
34
35
36
{
"name": "buttons",
"version": "0.0.1",
"description": "Buttons for Obsidian",
"author": "shabegom",
"main": "main.js",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "node esbuild.config.mjs",
"build:nolint": "node esbuild.config.mjs production",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"@babel/runtime": "7.13.10",
"@codemirror/language": "^6.2.1",
"@codemirror/state": "^6.1.1",
"@codemirror/view": "^6.2.0",
"@popperjs/core": "^2.9.2",
"math-expression-evaluator": "^1.3.7",
"tslib": "2.1.0"
},
"devDependencies": {
"@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",
"builtin-modules": "^3.2.0",
"esbuild": "^0.13.12",
"eslint": "7.22.0",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"typescript": "4.5.5"
}
}