-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "various-complements",
"version": "10.0.0-beta3",
"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:push": "tsc -noEmit -skipLibCheck && npm run test"
},
"keywords": [],
"author": "tadashi-aikawa",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^5.0.2",
"builtin-modules": "^3.3.0",
"esbuild": "^0.20.0",
"esbuild-jest": "^0.5.0",
"esbuild-svelte": "^0.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"obsidian": "^0.16.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.1",
"svelte": "^4.2.11",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.4.0",
"typescript": "^5.3.3"
},
"dependencies": {
"chinese-tokenizer": "github:tadashi-aikawa/chinese-tokenizer",
"emoji-regex": "^10.3.0",
"svelte-lucide-icons": "^0.6.0",
"ts-deepmerge": "^7.0.0"
}
}