generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
47 lines (47 loc) · 1.66 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
{
"name": "various-complements",
"version": "10.0.3",
"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",
"typecheck": "tsc -noEmit -skipLibCheck",
"build": "pnpm typecheck && node esbuild.config.mjs production",
"test": "jest --coverage",
"test:watch": "jest --watch",
"pre:push": "pnpm typecheck && pnpm test",
"ci": "pnpm i && pnpm build && pnpm test",
"version": "node version-bump.mjs && git add manifest-beta.json manifest.json versions.json",
"release": "pnpm run ci && pnpm version ${VERSION} && git push --tags && git push",
"prepare": "husky"
},
"keywords": [],
"author": "tadashi-aikawa",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/svelte": "^5.0.4",
"builtin-modules": "^3.3.0",
"chokidar": "^3.6.0",
"esbuild": "^0.23.0",
"esbuild-jest": "^0.5.0",
"esbuild-svelte": "^0.8.1",
"husky": "^9.1.3",
"jest": "^29.7.0",
"obsidian": "^0.16.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.18",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"dependencies": {
"chinese-tokenizer": "github:tadashi-aikawa/chinese-tokenizer",
"emoji-regex": "^10.3.0",
"svelte-lucide-icons": "^0.6.0",
"ts-deepmerge": "^7.0.1"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}