forked from remeda/remeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2 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
{
"name": "remeda",
"version": "0.0.35",
"description": "A utility library for JavaScript and Typescript.",
"keywords": [
"utils",
"fp",
"functional",
"programming",
"typescript"
],
"homepage": "https://github.com/remeda/remeda#readme",
"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,
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "npm run clean && npm run build:es && npm run build:cjs && npm run build:types",
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir \"./dist/commonjs\"",
"build:es": "tsc --project tsconfig.build.json --module esnext --outDir \"./dist/es\"",
"build:types": "tsc --project tsconfig.build.types.json --outDir \"./dist/types\"",
"clean": "rm -rf ./dist && mkdir dist",
"compile": "tsc",
"compile: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/ .",
"prepare": "husky",
"prettier": "prettier . --write",
"release": "semantic-release",
"test": "vitest"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.2",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.6",
"typescript": "^5.4.3",
"typescript-eslint": "^7.4.0",
"vitest": "^1.4.0"
}
}