-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@jimdo/components-stats",
"version": "3.2.1",
"description": "Collect stats about ui components usage across the specified GitHub org",
"main": "./build/index.js",
"type": "module",
"files": [
"build/**/*"
],
"scripts": {
"clean": "rm -rf ./build/",
"start": "npm run clean && npm run build && node build/run.js",
"build": "tsc --project tsconfig.build.json",
"cm": "cz",
"check": "biome check --write ./src/",
"prepare": "husky install",
"semantic-release": "node --loader ts-node/esm ./repo-scripts/npm-release.ts",
"postversion": "node --loader ts-node/esm ./repo-scripts/npm-postVersion.ts",
"test:watch": "vitest",
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jimdo/components-stats.git"
},
"license": "MIT",
"author": {
"name": "Stefania Mellai"
},
"keywords": [
"library",
"adoption",
"stats",
"statistics",
"dependency",
"visibility",
"usage",
"dependency",
"repositories",
"private",
"react",
"components"
],
"bugs": {
"url": "https://github.com/Jimdo/components-stats/issues"
},
"homepage": "https://github.com/Jimdo/components-stats#readme",
"dependencies": {
"@types/shelljs": "^0.10.0",
"package-adoption": "2.0.2",
"react-scanner": "^1.2.0",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/node": "^24.10.2",
"@vitest/coverage-v8": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2",
"type-fest": "^5.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "biome check --write"
},
"volta": {
"node": "24.14.1"
},
"engines": {
"node": ">= 24.14.1"
}
}