-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "obsidian-zoom",
"version": "1.1.2",
"description": "Zoom into heading and lists.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.mjs -w --configWithTests",
"build-with-tests": "rollup --config rollup.config.mjs --configWithTests",
"build": "rollup --config rollup.config.mjs",
"lint": "prettier --check src && eslint src",
"test": "jest",
"prepare": "husky install"
},
"author": "Viacheslav Slinko",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@codemirror/language": "^6.6.0",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.11.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/diff": "^5.0.3",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"babel-jest": "^29.5.0",
"debug": "^4.3.4",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"inquirer": "^9.2.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"mkdirp": "^3.0.1",
"obsidian": "^1.2.8",
"prettier": "^2.8.8",
"rollup": "^3.21.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "5.0.4",
"ws": "^8.13.0"
}
}