forked from remeda/remeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "remeda",
"version": "2.0.0",
"description": "A utility library for JavaScript and Typescript.",
"keywords": [
"algo",
"algorithm",
"curried",
"fp",
"functional",
"generics",
"lodash",
"ramda",
"stdlib",
"toolkit",
"ts",
"types",
"typescript",
"underscore",
"util",
"utilities",
"utility",
"utils"
],
"homepage": "https://remedajs.com/",
"bugs": {
"url": "https://github.com/remeda/remeda/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remeda/remeda.git"
},
"license": "MIT",
"author": "Łukasz Sentkiewicz",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"check": "tsc --project tsconfig.source.json",
"check:dist": "tsc --project tsconfig.dist.json",
"coverage": "vitest run --coverage",
"docs:build": "cd docs && npm ci && npm run build:all",
"lint": "eslint --fix --max-warnings 0 --cache --cache-location ./node_modules/.cache/eslint/",
"lint:build": "attw --pack . && publint",
"prepare": "husky",
"prettier": "prettier . --write",
"release": "semantic-release",
"test": "tsc --project tsconfig.tests.json && vitest --typecheck.enabled --typecheck.ignoreSourceErrors",
"test:runtime": "tsc --project tsconfig.tests.json && vitest",
"test:typing": "vitest --typecheck.only --typecheck.ignoreSourceErrors"
},
"dependencies": {
"type-fest": "^4.27.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.8.6",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/eslint-plugin": "^1.1.7",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4"
}
}