generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.29 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
39
40
41
{
"name": "solve",
"version": "1.0.3",
"description": "Supercharge your notes with real-time calculations without AI fuss. From dates ('Now + 20 days'), percentages ('10% of 120'), units of measurement ('100cm + 2m'), arithmetic ('10 + 5') and more!",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "npx eslint --fix src",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "jest",
"ohm": "npx ohm generateBundles --withTypes src/grammars/**/*.ohm",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Liam Riddell",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.2",
"@lezer/common": "^1.0.3",
"@ohm-js/cli": "https://gitpkg.now.sh/LiamRiddell/ohm/packages/cli?cli-includes",
"@types/convert-units": "^2.3.8",
"@types/node": "16.18.39",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"builtin-modules": "3.3.0",
"esbuild": "0.18.17",
"eslint": "8.45.0",
"jest": "^29.6.2",
"obsidian": "latest",
"prettier": "3.0.0",
"ts-jest": "^29.1.1",
"tslib": "2.6.1",
"typescript": "5.1.6"
},
"dependencies": {
"animate.css": "^4.1.1",
"convert-units": "^2.3.4",
"moment": "^2.29.4",
"ohm-js": "^17.1.0"
}
}