-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.68 KB
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
{
"name": "@ethan-utils/root",
"private": true,
"type": "commonjs",
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"scripts": {
"intro": "npx tsx index.ts",
"prepare": "husky",
"test": "vitest",
"test-pkg-axios": "vitest packages/axios",
"coverage": "vitest run --coverage",
"build": "pnpm -r --filter @ethan-utils/* run build",
"clean": "rimraf {packages,node-pkgs}/*/{dist,types,coverage}",
"changeset": "changeset",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix",
"lint": "run-s lint:*",
"commit": "commit",
"release": "run-s build version release:only",
"version": "changeset version",
"release:only": "changeset publish --registry=https://registry.npmjs.com/"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/prompt-cli": "^19.8.1",
"@ethan-utils/cowsay": "workspace:*",
"@ethan-utils/pay-gateway": "workspace:*",
"@types/node": "^24.0.4",
"@vitest/coverage-v8": "^3.2.4",
"commitizen": "^4.3.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-oxlint": "^1.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.3.0",
"prettier": "^3.6.0",
"rolldown": "1.0.0-beta.20",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.4"
},
"dependencies": {
"chalk": "^5.4.1"
}
}