-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "logseq-plugin-mark-map",
"version": "0.4.6",
"license": "MIT",
"description": "Logseq markmap plugin",
"main": "index.html",
"logseq": {
"icon": "./icon.png",
"id": "logseq-plugin-mark-map",
"title": "Logseq Markmap"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier -c .",
"prettier:fix": "npm run prettier -- --write",
"dev": "VITE_CJS_IGNORE_WARNING=true vite",
"build": "VITE_CJS_IGNORE_WARNING=true vite build && cp LICENSE icon.png package.json dist/"
},
"dependencies": {
"@logseq/libs": "^0.0.17",
"cheerio": "^1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"drauu": "^0.4.0",
"hotkeys-js": "^3.13.7",
"html2canvas": "^1.4.1",
"is-uuid": "^1.0.2",
"jquery": "^3.7.1",
"lightbox2": "^2.11.4",
"lucide-vue-next": "^0.378.0",
"markmap-common": "^0.14.2",
"markmap-lib": "^0.14.3",
"markmap-toolbar": "^0.14.3",
"markmap-view": "^0.14.3",
"org": "^0.2.0",
"pinia": "^2.1.7",
"radix-vue": "^1.7.4",
"string-replace-async": "^3.0.2",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"text-ellipsis": "^1.0.3",
"turndown": "^7.1.3",
"vue": "^3.4.27"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.2",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}