-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 938 Bytes
/
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
{
"name": "obsidian-tailwindcss-sample-plugin",
"version": "1.0.0",
"description": "A sample plugin for Obsidian using TailwindCSS.",
"main": "main.js",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "tsc -noEmit -skipLibCheck && vite build --mode production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.18",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"builtin-modules": "3.3.0",
"obsidian": "latest",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "^6.0.3"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}