-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "@scdev/github-languages-colors",
"version": "1.0.0",
"description": "This simple packages exposes github language colors in js, json and css and updates daily from github definitions!",
"author": "Simone Corsi <simonecorsi.dev@gmail.com>",
"license": "MIT",
"main": "./index.js",
"type": "module",
"exports": {
"require": "./src/index.cjs",
"default": "./src/index.mjs",
"node": "./src/index.mjs",
"import": "./src/index.mjs"
},
"repository": {
"url": "https://github.com/simonecorsi/github-languages-colors"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prepare": "node prepare.mjs || echo 'Skipping prepare'",
"build": "node build/index.mjs"
},
"keywords": [
"github",
"nodejs",
"javascript",
"js",
"esnext",
"node",
"npm"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@saithodev/semantic-release-backmerge": "^3.1.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"commitlint": "^20.0.0",
"lefthook": "^2.0.0",
"markdown-toc": "^1.2.0",
"semantic-release": "^25.0.0",
"slug": "^11.0.0",
"yaml": "^2.1.1"
},
"volta": {
"node": "22.14.0"
}
}