-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.08 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.08 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
{
"name": "brass-runtime",
"version": "1.10.0",
"description": "Effect runtime utilities for TypeScript",
"license": "MIT",
"author": "Augusto Vivaldelli",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./http": {
"types": "./dist/http/index.d.ts",
"import": "./dist/http/index.js",
"require": "./dist/http/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"keywords": [
"runtime",
"functional",
"effect-system",
"algebraic-effects",
"async",
"effects",
"fiber",
"fibers",
"concurrency",
"abortcontroller",
"cancellation",
"structured-concurrency",
"typescript",
"runtime"
],
"scripts": {
"dev": "tsx src/examples/index.ts",
"clean": "rimraf dist",
"build": "tsup",
"build:legacy": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:types": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.0.0",
"conventional-changelog-conventionalcommits": "^7.x.x",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.2",
"ts-node-dev": "^2.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaldrVivaldelli/brass-runtime.git"
},
"bugs": {
"url": "https://github.com/BaldrVivaldelli/brass-runtime/issues"
},
"homepage": "https://github.com/BaldrVivaldelli/brass-runtime#readme"
}