-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.7 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.7 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
{
"name": "pkg-placeholder",
"version": "0.0.1",
"description": "_description_",
"keywords": [
"pkg-placeholder"
],
"homepage": "https://github.com/ericc-ch/pkg-placeholder",
"bugs": "https://github.com/ericc-ch/pkg-placeholder/issues",
"author": {
"name": "Erick Christian",
"email": "erickchristian48@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ericc-ch/pkg-placeholder.git"
},
"bin": {
"pkg-placeholder": "./dist/cli.mjs"
},
"files": [
"dist",
"src"
],
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"format": "oxfmt",
"lint": "oxlint --type-aware",
"check": "pnpm run typecheck && pnpm run test && pnpm run lint",
"prepare": "simple-git-hooks && effect-language-service patch",
"prepack": "pnpm run build",
"release": "bumpp && npm publish",
"start": "node src/cli.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@effect/platform-node": "^4.0.0-beta.43",
"effect": "^4.0.0-beta.43"
},
"devDependencies": {
"@effect/language-service": "^0.84.3",
"@effect/vitest": "^4.0.0-beta.43",
"@types/node": "24.x.x",
"bumpp": "^11.0.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.19.0",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm run format",
"pre-push": "pnpm run check"
},
"packageManager": "pnpm@10.33.0"
}