-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.02 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": "@magic-color/monorepo",
"type": "module",
"version": "2.0.0",
"private": true,
"packageManager": "pnpm@9.12.1",
"scripts": {
"dev": "pnpm -r -F=\"./packages/*\" --parallel run dev",
"build": "pnpm -r -F=\"./packages/*\" run build",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix",
"prepublishOnly": "nr sync-docs && nr build",
"release": "nr lint:fix && bumpp -r",
"test": "vitest",
"test:update": "vitest -u",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"play": "pnpm -C playground dev",
"play:build": "pnpm -C playground build && esno scripts/move-build-files.ts",
"talk": "pnpm -C talk dev",
"talk:build": "pnpm -C talk build",
"deploy": "rimraf dist && nr build && nr talk:build && nr play:build",
"sync-docs": "esno scripts/sync-docs.ts",
"taze": "taze minor -wIr && pnpm -r --parallel run update-post"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@iconify-json/akar-icons": "catalog:",
"@iconify-json/carbon": "catalog:",
"@iconify-json/fluent-emoji": "catalog:",
"@iconify-json/logos": "catalog:",
"@iconify/utils": "catalog:",
"@magic-color/core": "workspace:*",
"@magic-color/shared": "workspace:*",
"@magic-color/theme": "workspace:*",
"@magic-color/transformer": "workspace:*",
"@magic-color/vue": "workspace:*",
"@types/node": "catalog:",
"@unocss/preset-mini": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"esno": "catalog:",
"lint-staged": "catalog:",
"magic-color": "workspace:*",
"pnpm": "catalog:",
"rimraf": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"unocss": "catalog:",
"unocss-preset-useful": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"vue": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}