-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.73 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
89
90
91
92
93
94
95
96
97
{
"name": "typedash",
"version": "3.2.5",
"description": "modern, type-safe collection of utility functions",
"keywords": [
"typescript",
"lodash",
"utility",
"utilities",
"type-safe",
"util",
"stdlib"
],
"repository": {
"type": "git",
"url": "https://github.com/bengry/typedash"
},
"license": "MIT",
"author": "Ben Grynhaus <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"require": "./dist/*/index.cjs",
"import": "./dist/*/index.js",
"types": "./dist/*/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup",
"commit": "cz",
"dev": "concurrently \"yarn build --watch\" \"yarn test:watch\"",
"lint": "concurrently \"yarn lint:linter\" \"yarn lint:format\" \"yarn lint:type-check\" \"yarn lint:dependencies:dedup:check\"",
"lint:dependencies:dedup:check": "yarn dedupe --check",
"lint:dependencies:dedup:fix": "yarn dedupe && yarn",
"lint:linter": "biome lint --error-on-warnings .",
"lint:linter:fix": "biome lint --error-on-warnings --write .",
"lint:fix": "yarn lint --fix && yarn lint:format:fix",
"lint:format": "biome format .",
"lint:format:fix": "biome format --write .",
"lint:type-check": "tsc --noEmit",
"prepare": "husky",
"release": "yarn build && yarn release-it",
"test": "vitest run --passWithNoTests",
"test:ci": "yarn test",
"test:coverage": "yarn test --coverage",
"test:ui": "yarn test:watch --ui",
"test:watch": "vitest",
"util:function-count": "exa -1 | grep -v '^_' | wc -l"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"dependencies": {
"type-fest": "^4.26.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"concurrently": "^9.0.1",
"husky": "^9.1.6",
"lefthook": "^1.8.1",
"react": "^18.3.1",
"release-it": "^17.10.0",
"tsup": "^8.3.5",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0"
}
}