forked from benjypng/logseq-sendtothings3-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.32 KB
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
{
"name": "logseq-sendtothings3-plugin",
"author": "hkgnp",
"description": "Quickly send block to Things3",
"license": "MIT",
"logseq": {
"id": "logseq-plugin-send-to-things3",
"title": "Send to thigns3",
"icon": "./icon.svg",
"main": "dist/index.html"
},
"main": "dist/index.html",
"targets": {
"main": false
},
"scripts": {
"dev:start": "npm i @logseq/libs -S && npm i @types/eslint @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint eslint-config-prettier eslint-plugin-prettier prettier vite vite-plugin-logseq vite-tsconfig-paths -D",
"dev:tailwind": "npm i tailwindcss cssnano autoprefixer -D && touch tailwind.config.js && touch .postcssrc.cjs && touch src/tailwind.css",
"dev": "npx vite",
"build": "npx tsc && npx vite build",
"preview": "npx vite preview"
},
"dependencies": {
"@logseq/libs": "^0.0.15"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.4.2",
"vite": "^4.4.9",
"vite-plugin-logseq": "^1.1.2",
"vite-tsconfig-paths": "^4.2.0"
}
}