-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.18 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "simply-effect",
"version": "0.0.6",
"type": "module",
"description": "Simple wrapper around Effect.gen that allows writing generator functions in a cleaner way.",
"author": "Kasper Peulen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kasperpeulen/simply-effect.git"
},
"homepage": "https://github.com/kasperpeulen/simply-effect",
"bugs": {
"url": "https://github.com/kasperpeulen/simply-effect/issues"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "vitest",
"build": "tsc -b tsconfig.json",
"auto": "auto",
"release": "auto shipit"
},
"peerDepenVdencies": {
"effect": "^3.0.6"
},
"devDependencies": {
"auto": "^11.1.6",
"effect": "^3.0.6",
"prettier": "^3.2.5",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
},
"files": [
"dist/**/*",
"README.md"
],
"publishConfig": {
"access": "public"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}