generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "cloud-atlas",
"version": "1.1.2",
"description": "Interoperability between Obsidian and Cloud Atlas",
"main": "dist/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev-build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs dev-build",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "TBD",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.2",
"@types/obsidian-typings": "github:Fevol/obsidian-typings",
"@types/uuid": "^9.0.8",
"@types/word-extractor": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.12.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.21.5",
"obsidian": "^1.5.7",
"tslib": "^2.6.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.12",
"openai": "^4.28.4",
"short-unique-id": "^5.0.3",
"uuid": "^9.0.1",
"word-extractor": "^1.0.4"
}
}