-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "fp-ts-std",
"description": "The missing pseudo-standard library for fp-ts.",
"version": "0.19.1",
"license": "MIT",
"author": "Sam A. Horvath-Hunt <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/samhh/fp-ts-std"
},
"homepage": "https://github.com/samhh/fp-ts-std",
"bugs": "https://github.com/samhh/fp-ts-std/issues",
"keywords": ["functional-programming", "typescript", "fp-ts"],
"engines": {
"node": ">=20"
},
"exports": {
"./*": {
"types": "./dist/types/*.d.ts",
"require": "./dist/cjs/*.js",
"import": "./dist/esm/*.js"
}
},
"typesVersions": {
"*": {
"*": ["./dist/types/*"]
}
},
"files": ["dist/"],
"sideEffects": false,
"scripts": {
"build": "rm -rf ./dist/ && mkdir -p ./dist/esm/ ./dist/cjs/ && tsc -p ./tsconfig.build-esm.json && tsc -p ./tsconfig.build-cjs.json && tsc -p ./tsconfig.build-types.json",
"typecheck": "tsc --noEmit",
"lint": "biome ci --error-on-warnings --formatter-enabled=false --organize-imports-enabled=false .",
"fmt": "biome check --linter-enabled=false .",
"test": "jest",
"docs-ci": "docs-ts",
"docs": "docs-ts && tshm-docs-ts ./docs/modules/*",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.3.53",
"@swc/jest": "^0.2.26",
"@types/assert": "^1.5.10",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.12.5",
"assert": "^2.1.0",
"docs-ts": "^0.8.0",
"fast-check": "^3.1.2",
"fp-ts": "^2.16.0",
"fp-ts-laws": "^0.3.0",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"monocle-ts": "^2.3.0",
"newtype-ts": "^0.3.0",
"ts-node": "^8.10.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"fp-ts": "^2.16.0",
"monocle-ts": "^2.3.0",
"newtype-ts": "^0.3.0"
}
}