forked from bloodyowl/boxed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"name": "@swan-io/boxed",
"version": "0.5.2",
"license": "MIT",
"description": "Utility types for functional TypeScript",
"author": "Matthias Le Brun <[email protected]>",
"homepage": "https://swan-io.github.io/boxed",
"repository": {
"type": "git",
"url": "https://github.com/swan-io/boxed.git"
},
"main": "dist/Boxed.js",
"source": "src/Boxed.ts",
"files": [
"LICENSE",
"dist",
"README.md"
],
"keywords": [
"typescript",
"functional",
"utility",
"utilities"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"prettier": {
"trailingComma": "all"
},
"scripts": {
"build": "yarn clean && microbundle -f cjs,es",
"clean": "rm -rf dist",
"format": "prettier '**/*' -u -w",
"prepare": "yarn test && yarn build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"benchmark": "node benchmark/src/option && node benchmark/src/result && node benchmark/src/future"
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"benchmark": "^2.1.4",
"fp-ts": "^2.11.9",
"microbundle": "^0.14.2",
"prettier": "^2.6.0",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-pattern": "^4.0.0",
"typescript": "^4.6.2",
"vitest": "^0.7.4"
}
}