-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 3.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
{
"version": "1.11.0",
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev -w examples/fullexample",
"build": "npm run build --workspaces --if-present",
"lint": "eslint . --cache .",
"lint:fix": "eslint . --cache . --fix",
"test": "vitest -c vite.config.all.ts",
"test:unit": "vitest -c vite.config.ts",
"test:integration": "vitest -c vite.config.integration.ts",
"update:doc": "npm run gitclean && typedoc && 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 && 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"
},
"workspaces": [
"./packages/*",
"./examples/*",
"website"
],
"devDependencies": {
"@types/node": "^20.11.17",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/coverage-v8": "^1.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-esm": "^2.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-vitest": "^0.3.22",
"git-cliff": "^2.0.4",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"testcontainers": "^10.6.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
},
"packageManager": "[email protected]"
}