-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.04 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
79
{
"name": "@wopjs/tsur",
"version": "0.1.7",
"description": "TypeScript goodies inspired by Rust.",
"repository": "wopjs/tsur",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./patches": {
"require": {
"types": "./dist/patches.d.cts",
"default": "./dist/patches.cjs"
},
"import": {
"types": "./dist/patches.d.mts",
"default": "./dist/patches.mjs"
}
}
},
"sideEffects": [
"**/patches.*",
"**/patches/*"
],
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:ci": "biome ci",
"ts-check": "tsc --noEmit",
"docs": "typedoc --options typedoc.json && biome format --write --config-path=biome.docs.json --files-ignore-unknown=true docs",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=src/**",
"test:ci": "tsc --noEmit && vitest --coverage --coverage.reporter=lcov --coverage.include=src/**",
"build": "tsdown",
"build:min": "MINIFY=true tsdown && echo '' && gzip-size dist/index.mjs dist/index.cjs",
"release": "commit-and-tag-version"
},
"keywords": [
"typescript",
"rust",
"monad",
"option",
"result",
"some",
"none",
"ok",
"err",
"filterMap"
],
"author": "CRIMX <straybugs@gmail.com> (https://github.com/crimx/)",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.0.18",
"@wopjs/gzip-size": "^0.1.5",
"commit-and-tag-version": "^13.1.2",
"tsdown": "^0.22.1",
"typedoc": "^0.28.18",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "^4.0.6"
}
}