forked from SettingDust/obsidian-outliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
53
54
55
{
"name": "obsidian-outliner",
"version": "4.8.2",
"description": "Work with your lists like in Workflowy or RoamResearch.",
"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 --forceExit",
"prepare": "husky install"
},
"author": "Viacheslav Slinko",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/diff": "^5.0.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"babel-jest": "^29.7.0",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"inquirer": "^9.2.16",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"mkdirp": "^3.0.1",
"obsidian": "^1.5.7",
"prettier": "^3.2.5",
"rollup": "^4.13.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"ws": "^8.16.0"
},
"dependencies": {
"why-is-node-running": "^2.2.2"
}
}