-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 2.72 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
{
"version": "2.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev -w examples/fullexample",
"build": "npm run build --workspaces --if-present && npm run lint:fix",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write",
"test": "vitest",
"test:unit": "tsc --noEmit && vitest -c ./vitest.config.unit.ts",
"update:doc": "npm run gitclean && typedoc --options typedoc.json && git add --all && git commit -S -am \"doc: update api documentation\" && git-cliff > CHANGELOG.md && git commit -am \"doc: update CHANGELOG\" && npm run build:doc -w website",
"release:major": "npm run gitclean && npm run release:prepare && npm run gitclean && npm version major --no-git-tag-version --workspaces && npm run commit:major && npm publish --workspaces",
"release:minor": "npm run gitclean && npm run release:prepare && npm run gitclean && npm version minor --no-git-tag-version --workspaces && npm run commit:minor && npm publish --workspaces",
"release:patch": "npm run gitclean && npm run release:prepare && npm run gitclean && npm version patch --no-git-tag-version --workspaces && npm run commit:patch && npm publish --workspaces",
"gitclean": "./scripts/isGitClean.sh",
"release:prepare": "npm run lint & npm run build & npm run test",
"tag": "git push && git push --tags && rm -rf build/temp",
"commit:major": "npm version major --no-git-tag-version && scripts/commitVersion.sh && npm run build",
"commit:minor": "npm version minor --no-git-tag-version && scripts/commitVersion.sh && npm run build",
"commit:patch": "npm version patch --no-git-tag-version && scripts/commitVersion.sh && npm run build",
"dev:doc": "npm run dev -w website",
"build:doc": "typedoc --options typedoc.json && git-cliff > CHANGELOG.md && npm run build:doc -w website",
"vitepress": "npm run preview -w website",
"check:cycling": "npx madge --circular --exclude '\\.d\\.ts$' --extensions ts ./packages",
"sign": "git rebase --exec \"git commit --amend --no-edit -n -S\" -i",
"deps:check": "check-dependency-version-consistency && ncu -ws --root",
"deps:update": "ncu -ws --root -u"
},
"workspaces": ["./packages/*", "./examples/*", "website"],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.9",
"@types/sinon": "^17.0.3",
"@vitest/coverage-v8": "^3.0.4",
"check-dependency-version-consistency": "^5.0.0",
"git-cliff": "^2.3.0",
"npm-check-updates": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"testcontainers": "^10.12.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typedoc": "^0.27.3",
"typedoc-plugin-markdown": "^4.3.1",
"typescript": "^5.8.2",
"vitest": "^3.0.4"
},
"packageManager": "npm@9.6.2",
"dependencies": {
"npm": "^11.1.0"
}
}