-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "hyogwa",
"version": "0.1.0-rc.4",
"description": "Natural 🌿 effect system that fits TypeScript",
"type": "module",
"exports": {
".": "./dist/index.js",
"./core": "./dist/index.js",
"./runners": "./dist/runners.js",
"./assistant": "./dist/assistants.js",
"./exception": "./dist/exception.js",
"./env": "./dist/env.js",
"./state": "./dist/state.js",
"./log": "./dist/log.js",
"./async-task": "./dist/async-task.js",
"./monad": "./dist/monad.js",
"./with-handler": "./dist/with-handler.js"
},
"sideEffects": false,
"scripts": {
"build": "rm -rf ./dist; tsc",
"prepare": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ENvironmentSet/hyogwa.git"
},
"keywords": [
"algebraic-effects",
"functional-programming",
"extensible-effects",
"computational-effects",
"effect-system",
"typescript"
],
"author": "ENvironmentSet <[email protected]> (https://overcurried.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ENvironmentSet/hyogwa/issues"
},
"homepage": "https://github.com/ENvironmentSet/hyogwa#readme",
"devDependencies": {
"typescript": "^5.3.3"
}
}