-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "various-complements",
"version": "8.1.0-beta1",
"description": "This plugin for Obsidian enables you to complete words like the auto-completion of IDE",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest-beta.json manifest.json versions.json",
"test": "jest --coverage",
"prepare": "husky install",
"pre:commit": "tsc -noEmit -skipLibCheck && npm run test"
},
"keywords": [],
"author": "tadashi-aikawa",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^3.0.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.15.12",
"esbuild-jest": "^0.5.0",
"esbuild-svelte": "^0.7.1",
"husky": "^8.0.1",
"jest": "^29.2.2",
"obsidian": "^0.16.0",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.48.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.9.3"
},
"volta": {
"node": "18.12.1"
},
"dependencies": {
"chinese-tokenizer": "github:tadashi-aikawa/chinese-tokenizer",
"svelte-lucide-icons": "^0.6.0",
"ts-deepmerge": "^3.0.0"
}
}