-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "fp-lite",
"version": "2.1.1",
"description": "Functional style utility functions",
"main": "./dist/index.js",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "pnpm@8.15.9+sha256.daa27a0b541bc635323ff96c2ded995467ff9fe6d69ff67021558aa9ad9dcc36",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"format": "prettier --write .",
"release": "pnpm build && changeset publish",
"test": "vitest"
},
"files": [
"dist"
],
"keywords": [
"Functional Programing"
],
"author": "Neo Yang",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tealina/fp-lite.git"
},
"bugs": {
"url": "https://github.com/tealina/fp-lite/issues"
},
"homepage": "https://github.com/tealina/fp-lite#readme",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.26.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}