-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.61 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "functional.js",
"version": "1.0.2",
"author": "Lee Crossley <[email protected]> (http://ilee.co.uk/)",
"description": "A lightweight, TypeScript-first functional programming library with excellent type inference",
"homepage": "https://functionaljs.com",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"production": "./dist/index.min.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"llms.txt"
],
"keywords": [
"functional",
"fp",
"typescript",
"curry",
"currying",
"compose",
"composition",
"pipe",
"immutable",
"point-free",
"data-last",
"ramda",
"lodash-fp",
"functional-programming",
"ai",
"ai-friendly",
"llm",
"llm-documented",
"llms-txt"
],
"contributors": [
{
"name": "Lee Crossley",
"email": "[email protected]"
},
{
"name": "Ryan Roberts",
"email": "[email protected]"
}
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"benchmark": "pnpm --dir local/benchmarks install && pnpm build && node local/benchmarks/run.mjs"
},
"repository": {
"type": "git",
"url": "[email protected]:functionaljs/functional-js.git"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.56.0",
"expect-type": "^0.17.3",
"prettier": "^3.2.4",
"tsup": "^8.5.1",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"packageManager": "[email protected]"
}