-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 966 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"postinstall": "pnpm dlx husky install",
"build": "pnpm --filter \"./packages/*\" build",
"build:examples": "pnpm --filter \"./examples/*\" --parallel build",
"dev": "pnpm --filter \"./packages/*\" dev",
"test": "pnpm --filter \"./packages/*\" --parallel test",
"e2e": "pnpm --filter \"./packages/*\" --parallel e2e",
"lint": "pnpm --filter \"./packages/*\" --parallel lint",
"check:type": "pnpm --filter \"./packages/*\" --parallel type-check",
"check:commit": "commitlint --from=HEAD~1 --verbose"
},
"packageManager": "^[email protected]",
"engines": {
"node": "^20"
},
"repository": {
"type": "git",
"url": "https://github.com/master-co/theme-mode.git"
},
"dependencies": {
"@techor/repo": "^3.0.17"
},
"devDependencies": {
"theme-mode": "workspace:^"
}
}