-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.35 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.35 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
{
"repository": {
"type": "git",
"url": "https://github.com/jpb06/effect-octokit-layer"
},
"name": "effect-octokit-layer",
"version": "1.15.1",
"author": "jpb06 <jp.bois.06@outlook.fr>",
"description": "Github Octokit layer for effect",
"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 run resolve-ts-paths-esm --debug true",
"type-check": "tsc --noEmit",
"check": "biome check .",
"format": "biome format --write .",
"format-ci": "biome format .",
"lint": "biome lint .",
"lint-fix": "biome lint --write .",
"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": "7.0.6",
"date-fns": "4.1.0",
"picocolors": "1.1.1"
},
"peerDependencies": {
"@effect/platform": "0.x",
"effect": "3.x"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/bun": "latest",
"@types/node": "25.4.0",
"@vitest/coverage-v8": "4.0.18",
"copyfiles": "2.4.1",
"del-cli": "7.0.0",
"effect-errors": "1.10.23",
"npm-check-updates": "19.6.3",
"readme-package-icons": "1.2.2",
"ts-paths-resolver": "1.3.6",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.0.18",
"vitest-mock-extended": "3.1.0"
}
}