-
Notifications
You must be signed in to change notification settings - Fork 560
/
package.json
35 lines (35 loc) · 1.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
{
"name": "hello-open-source",
"version": "1.0.0",
"description": "Repository for beginners that learn to contribute to open source project.",
"keywords": ["beginners", "contribute", "open-source"],
"homepage": "https://github.com/mazipan/hello-open-source#readme",
"bugs": {
"url": "https://github.com/mazipan/hello-open-source/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazipan/hello-open-source.git"
},
"license": "MIT",
"author": "mazipan",
"main": "index.js",
"scripts": {
"biome:clean": "biome clean",
"biome:migrate": "biome migrate --write",
"format": "biome format --write",
"lint": "biome lint --write",
"lint:check": "biome check --unsafe --reporter=summary",
"lint:unsafe": "biome lint --write --unsafe",
"purge": "node ./purge",
"test": "echo \"not implement yet\""
},
"devDependencies": {
"@biomejs/biome": "1.9.4"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.x",
"pnpm": "^9.12.2"
}
}