-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "obsidian-outliner",
"version": "4.8.1",
"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"
},
"author": "Viacheslav Slinko",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.33.0",
"@eslint/js": "^9.9.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/diff": "^5.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"babel-jest": "^29.7.0",
"debug": "^4.3.6",
"eslint": "^9.9.1",
"husky": "^9.1.5",
"inquirer": "^10.1.8",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"mkdirp": "^3.0.1",
"obsidian": "^1.6.6",
"prettier": "^3.3.3",
"rollup": "^4.21.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"ws": "^8.18.0"
}
}