-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 844 Bytes
/
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
{
"name": "clark-fp",
"version": "0.5.11",
"description": "Functional programming utilities",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"scripts": {
"build": "rimraf dist && tsup src/main.ts --format esm,cjs --dts",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"Javascript",
"Typescript",
"FP",
"Functional programming",
"ts-pattern",
"pattern matching",
"either",
"maybe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gideaoms/clark-fp.git"
},
"author": "Gideão Silva",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@types/node": "^20.12.7",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "5.5.0-beta"
}
}