-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "@swan-io/boxed",
"version": "3.2.0",
"license": "MIT",
"description": "Utility types for functional TypeScript",
"author": "Matthias Le Brun <[email protected]>",
"homepage": "https://boxed.cool",
"repository": {
"type": "git",
"url": "https://github.com/swan-io/boxed.git"
},
"main": "dist/Boxed.js",
"module": "dist/Boxed.mjs",
"source": "src/Boxed.ts",
"types": "dist/Boxed.d.ts",
"files": [
"LICENSE",
"dist",
"README.md"
],
"keywords": [
"typescript",
"functional",
"utility",
"utilities"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"prettier": {
"trailingComma": "all",
"plugins": [
"prettier-plugin-organize-imports"
]
},
"scripts": {
"build": "yarn clean && microbundle -f cjs,es",
"clean": "rm -rf dist",
"format": "prettier '**/*' -u -w",
"prepack": "yarn test && yarn build",
"test": "vitest run",
"test:typecheck": "tsc --noEmit -p tsconfig.test.json",
"typecheck": "tsc --noEmit",
"benchmark": "node benchmark/src/option && node benchmark/src/result && node benchmark/src/future && node benchmark/src/future-result"
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"effect": "^2.4.3",
"fp-ts": "^2.16.1",
"microbundle": "^0.15.1",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-pattern": "^5.0.6",
"typescript": "^5.3.2",
"vitest": "^1.0.1"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}