-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "theemo",
"private": true,
"repository": "https://github.com/theemo-tokens/theemo",
"type": "module",
"scripts": {
"api": "typedoc",
"build": "turbo run --filter '@theemo/*' build",
"clean": "concurrently 'npm:clean:*'",
"clean:dist": "find . -not \\( -path './node_modules' -type d -prune \\) -name 'dist' -type d -exec rm -rf '{}' +",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:turbo": "find . -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"docs:build": "pnpm api && vitepress build docs",
"docs:dev": "pnpm api && vitepress dev docs",
"docs:preview": "pnpm api && vitepress preview docs",
"lint": "pnpm --filter '@theemo/*' lint",
"release": "release-it",
"start": "turbo run --filter '@theemo/*' start",
"test": "vitest run",
"test:dev": "vitest --ui"
},
"devDependencies": {
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"@zvitek/vitepress-plugin-matomo": "1.0.1",
"concurrently": "^9.1.1",
"markdown-it-attrs": "4.3.1",
"markdown-it-deflist": "3.0.0",
"markdown-it-multimd-table": "4.2.3",
"mermaid": "11.4.1",
"release-plan": "0.11.0",
"turbo": "2.3.3",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typedoc-vitepress-theme": "1.1.1",
"vite": "6.0.6",
"vitepress": "1.5.0",
"vitepress-plugin-mermaid": "2.0.17",
"vitest": "2.1.8",
"vue": "3.5.13"
},
"packageManager": "pnpm@9.15.2",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"vite-plugin-md"
]
}
}
}