-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.24 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.24 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
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": "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": "vitepress dev docs",
"docs:preview": "pnpm api && vitepress preview docs",
"lint": "pnpm --filter '@theemo/*' lint",
"start": "turbo run --filter '@theemo/*' start",
"test": "concurrently -g 'npm:test:*(!dev)'",
"test:node": "vitest run",
"test:browser": "pnpm run -r --parallel test:browser",
"test:dev": "vitest --ui"
},
"devDependencies": {
"@shikijs/vitepress-twoslash": "^3.23.0",
"@theemo/build": "workspace:*",
"@theemo/cli": "workspace:*",
"@theemo/core": "workspace:*",
"@theemo/ember": "workspace:*",
"@theemo/figma": "workspace:*",
"@theemo/style-dictionary": "workspace:*",
"@theemo/sync": "workspace:*",
"@theemo/theme": "workspace:*",
"@theemo/tokens": "workspace:*",
"@theemo/vite": "workspace:*",
"@theemo-config/typedoc": "workspace:*",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"@zvitek/vitepress-plugin-matomo": "1.0.1",
"concurrently": "^9.2.1",
"iconify-icon": "^3.0.2",
"markdown-it-deflist": "3.0.0",
"markdown-it-multimd-table": "4.2.3",
"mermaid": "11.14.0",
"release-plan": "0.17.4",
"style-dictionary": "^5.4.0",
"turbo": "2.8.21",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.11.0",
"typedoc-vitepress-theme": "1.1.2",
"typescript": "5.9.3",
"unplugin-icons": "^22.5.0",
"unplugin-vue-components": "^29.2.0",
"vite": "6.3.6",
"vitepress": "1.6.4",
"vitepress-plugin-group-icons": "^1.7.3",
"vitepress-plugin-mermaid": "2.0.17",
"vitest": "3.2.4",
"vue": "3.5.32"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.11.0 || >=22"
}
}