-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "obsidian-sidekick",
"version": "1.5.1",
"description": "A companion to identify hidden connections that match your tags and pages",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/hadynz/obsidian-sidekick.git"
},
"keywords": [
"obsidian",
"autocomplete",
"autosuggestion",
"connections"
],
"author": {
"name": "Hady Osman",
"email": "[email protected]",
"url": "https://hady.geek.nz"
},
"license": "MIT",
"scripts": {
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"lint": "tsc --noemit && eslint . --ext .ts",
"clean": "rimraf dist main.js*",
"test": "jest --passWithNoTests --verbose",
"test-watch": "jest --watch",
"dev": "NODE_ENV=development webpack && cp ./dist/main.js* .",
"build": "NODE_ENV=production webpack",
"prepare": "husky install"
},
"devDependencies": {
"@codemirror/rangeset": "^0.19.7",
"@codemirror/state": "^0.19.9",
"@codemirror/view": "^0.19.42",
"@types/faker": "^5.5.8",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.178",
"@types/lokijs": "^1.5.7",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.6.0",
"eslint": "^7.24.0",
"faker": "^5.5.3",
"file-loader": "^6.2.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^11.2.4",
"obsidian": "^0.13.11",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.5",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-node": "^10.5.0",
"typescript": "^4.2.3",
"uglify-js": "^3.15.1",
"url-loader": "^4.1.1",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@tanishiking/aho-corasick": "^0.0.1",
"@types/natural": "^5.1.0",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"natural": "^5.1.13",
"tiny-typed-emitter": "^2.1.0"
}
}