-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.23 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
{
"name": "@mikkurogue/ferrocore",
"version": "0.0.10",
"description": "A rust-inspired library for handling Option and Result types in TypeScript",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./option": {
"import": "./dist/option/index.js",
"require": "./dist/option/index.js",
"types": "./dist/option/index.d.ts"
},
"./result": {
"import": "./dist/result/index.js",
"require": "./dist/result/index.js",
"types": "./dist/result/index.d.ts"
},
"./array": {
"import": "./dist/array/index.js",
"require": "./dist/array/index.js",
"types": "./dist/array/index.d.ts"
}
},
"keywords": [
"option",
"result",
"rust",
"none",
"some",
"utility",
"pattern-match",
"ferrocore"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"lint": "npx biome lint --write ."
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mikkurogue/ferrocore"
},
"publishConfig": {
"access": "public"
}
}