-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
53
{
"name": "obsidian-clever-search",
"version": "0.1.0",
"description": "An obsidian search plugin that tunes your knowledge base to the rhythm of your fingertips.",
"main": "main.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "node esbuild.config.mjs development",
"test": "node --experimental-vm-modules --no-warnings=ExperimentalWarning node_modules/jest/bin/jest.js",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
},
"keywords": [],
"author": "alexclifton",
"license": "GPL-3",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/plugin-proposal-decorators": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.3",
"@jest/globals": "^29.7.0",
"@tsconfig/svelte": "^3.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^16.11.6",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"babel-jest": "^29.7.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-svelte": "^0.7.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^3.59.2",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.9.4"
},
"dependencies": {
"dexie": "^3.2.4",
"franc-min": "^6.1.0",
"fzf": "^0.5.2",
"jieba-wasm": "^0.0.2",
"minisearch": "^6.3.0",
"reflect-metadata": "^0.1.13",
"throttle-debounce": "^5.0.0",
"tsyringe": "^4.8.0"
}
}