-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "resultage",
"version": "0.6.4",
"description": "Useful type to model success and failure",
"scripts": {
"test": "jest",
"clear": "rm -rf ./lib; rm -rf ./dist; rm -rf ./esm",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"compile:esm": "tsc --project tsconfig.esm.json && echo '{ \"type\": \"module\" }' > esm/package.json",
"compile": "npm run clear; npm run compile:cjs && npm run compile:esm && tsup",
"lint": "eslint ."
},
"keywords": [
"result",
"either",
"monad",
"functor",
"async",
"io",
"task",
"rust"
],
"author": "Dmytro Shchehlov <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/DScheglov/resultage"
},
"bugs": {
"url": "https://github.com/DScheglov/resultage/issues"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@type-challenges/utils": "^0.1.1",
"@types/eslint": "^9.6.0",
"@types/node": "^20.10.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"terser": "^5.33.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^7.17.0"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./esm/index.js",
"require": "./lib/index.js"
},
"./fn": {
"types": "./lib/fn/index.d.ts",
"import": "./esm/fn/index.js",
"require": "./lib/fn/index.js"
}
},
"typesVersions": {
"*": {
"fn": [
"./lib/fn/index.d.ts"
],
"*": [
"./lib/*"
]
}
},
"files": [
"lib",
"esm",
"dist"
]
}