This repository was archived by the owner on Feb 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.24 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
{
"repository": "https://github.com/jpb06/effect-github-stats.git",
"name": "effect-github-stats",
"version": "1.0.35",
"author": "jpb06 <jp.bois.06@outlook.fr>",
"description": "Getting user stats from github",
"license": "MIT",
"keywords": [
"effect",
"github",
"octokit"
],
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./dts/index.ts",
"type": "module",
"exports": {
".": {
"require": {
"types": "./dts/index.d.ts",
"default": "./cjs/index.js"
},
"import": {
"types": "./dts/index.d.ts",
"default": "./esm/index.js"
}
}
},
"engines": {
"node": ">=20.x"
},
"scripts": {
"update-deps": "bunx npm-check-updates --root --format group -i",
"copy-package": "copyfiles package.json ./dist/",
"copy-readme": "copyfiles README.md ./dist/",
"build": "del-cli ./dist && bun build-esm && bun build-cjs",
"build-esm": "tsc --project tsconfig.esm.json",
"build-cjs": "tsc --project tsconfig.cjs.json",
"postbuild-cjs": "echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"postbuild-esm": "echo '{\"type\": \"module\"}' > dist/esm/package.json",
"postbuild": "bun run copy-package && bun run copy-readme && bun resolve-ts-paths-esm",
"type-check": "tsc --noEmit",
"format": "biome format --write ./src",
"format-ci": "biome format ./src",
"lint": "biome lint ./src",
"lint-fix": "biome lint --write ./src",
"test": "vitest",
"test-ci": "vitest --coverage --run",
"test-dev": "vitest --coverage",
"test-coverage": "vitest run --coverage",
"sync-icons": "bun generateReadmeIcons -h 50"
},
"dependencies": {
"@octokit/core": "6.1.4",
"dotenv-flow": "4.1.0",
"effect": "3.13.1",
"picocolors": "1.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/node": "22.13.4",
"@vitest/coverage-v8": "3.0.5",
"copyfiles": "2.4.1",
"del-cli": "6.0.0",
"effect-errors": "1.8.36",
"npm-check-updates": "17.1.14",
"readme-package-icons": "1.2.0",
"ts-paths-resolver": "1.2.31",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.5",
"vitest-mock-extended": "2.0.2"
}
}