-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "logseq-plugin-colored-threads",
"version": "0.0.0-development",
"description": "A plugin for coloring threads",
"author": "PatrickDeVries",
"license": "MIT",
"main": "./index.html",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier --write .",
"lint:format": "prettier --check .",
"lint:code": "eslint . --max-warnings=0",
"lint:types": "tsc --noEmit",
"lint": "concurrently -g -c auto -n \"format,code,types\" \"bun lint:format\" \"bun lint:code\" \"bun lint:types\""
},
"dependencies": {
"@logseq/libs": "^0.0.15"
},
"devDependencies": {
"@types/bun": "^1.0.0",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"concurrently": "^8.2.2",
"eslint": "8.56.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.1.1",
"process": "^0.11.10",
"vite": "^5.0.10",
"vite-plugin-logseq": "^1.1.2"
},
"logseq": {
"icon": "./logo.svg",
"id": "_patrickdevries-logseq-plugin-colored-threads"
},
"repository": {
"type": "git",
"url": "https://github.com/PatrickDeVries/logseq-plugin-colored-threads.git"
}
}