-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (45 loc) · 1.52 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
{
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"cross-env": "7.0.3",
"husky": "9.1.6",
"js-yaml": "4.1.0",
"lerna": "8.1.8",
"license-report": "6.7.0",
"lint-staged": "15.2.10",
"npm-check-updates": "17.1.9",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"ts-prune": "0.10.3",
"typescript": "5.6.3"
},
"engines": {
"pnpm": "^9"
},
"private": true,
"scripts": {
"build": "pnpm -r build",
"clean": "git clean -f -d -X",
"clean:branches": "git branch --merged | grep -v \\* | xargs git branch -D",
"clean:pnpm": "pnpm -r exec rimraf pnpm-lock.yaml && rimraf pnpm-lock.yaml && pnpm clean",
"format": "pnpm -r format",
"lint": "pnpm -r lint",
"lint-staged": "lint-staged",
"unused": "pnpm -r unused",
"ts-prune": "git clean -f -d -X packages/adapters/**/src && pnpm -r exec npx ts-prune src -e",
"ncu:major": "ncu && pnpm -r exec ncu",
"ncu:minor": "ncu -t minor -u && pnpm -r exec ncu -t minor -u -x @types/react,@stencil/core,@unocss/*",
"ncu:patch": "ncu -t patch -u && pnpm -r exec ncu -t patch -u",
"pack": "pnpm -r exec pnpm pack",
"prepare": "husky",
"reinstall": "pnpm clean:pnpm && pnpm i",
"test": "pnpm -r test",
"test-reset-and-update": "rimraf packages/themes/**/snapshots/** && pnpm test-update",
"test-update": "pnpm -r test-update",
"update": "pnpm ncu:patch && pnpm ncu:minor && pnpm ncu:major",
"version": "node scripts/update-publiccode.mjs && git add publiccode.yml"
}
}