-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.72 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
{
"name": "@amar4enko/effect-schema-compiler",
"version": "0.2.1",
"description": "Attempt at ergonomic effect/Schema compiler",
"homepage": "https://github.com/amar4enko/effect-schema-compiler#readme",
"bugs": {
"url": "https://github.com/amar4enko/effect-schema-compiler/issues"
},
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AMar4enko/effect-schema-compiler.git"
},
"scripts": {
"build": "bunup --dts.infer-types",
"dev": "bunup --watch",
"postinstall": "bun simple-git-hooks",
"lint": "oxlint src",
"lint:fix": "oxlint --fix src",
"release": "bumpp --commit --push --tag",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/bun": "^1.3.3",
"bumpp": "^10.3.2",
"bunup": "^0.16.10",
"simple-git-hooks": "^2.13.1",
"@codeforbreakfast/bun-test-effect": "^0.4.0",
"add": "^2.0.6",
"effect": "~3.19.8",
"oxfmt": "^0.16.0",
"oxlint": "^1.31.0",
"tstyche": "^5.0.1",
"typescript": "~5.9.3"
},
"peerDependencies": {
"typescript": ">=5.9.0",
"effect": "^3.18.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"type": "module",
"exports": {
".": {
"default": "./dist/index.js",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"module": "./dist/index.js",
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run type-check"
},
"types": "./dist/index.d.ts"
}