-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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": "obsidian-sample-plugin",
"version": "1.0.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"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.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"esbuild-sass-plugin": "^3.3.1",
"framer-motion": "^11.11.4",
"install": "^0.13.0",
"npm": "^10.9.0",
"obsidian": "^1.7.2",
"openai": "^4.67.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"zustand": "^5.0.0-rc.2"
},
"dependencies": {
"@floating-ui/react": "^0.26.25"
}
}