-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.05 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
65
66
67
68
69
70
71
{
"name": "noteplot",
"version": "0.0.1",
"private": false,
"bin": {
"noteplot": "./index.js"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"watch:notes": "node index.js watch --only-notes",
"watch": "node index.js watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^8.56.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"postcss": "^8.4.38",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"type": "module",
"dependencies": {
"@microflash/rehype-figure": "^2.1.1",
"@shikijs/rehype": "^1.21.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.10",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"commander": "^12.1.0",
"concurrently": "^8.2.2",
"d3": "^7.9.0",
"flexsearch": "^0.7.43",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0",
"rehype-mathjax": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-inline-links": "^7.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"remark-retext": "^6.0.0",
"remark-stringify": "^11.0.0",
"retext-latin": "^4.0.0",
"retext-stringify": "^4.0.0",
"strip-markdown": "^6.0.0",
"to-vfile": "^8.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"vfile-matter": "^5.0.0",
"vfile-reporter": "^8.1.1",
"watcher": "^2.3.1"
}
}