-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.14 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
98
99
100
{
"name": "base-up",
"version": "2.0.0",
"description": "A modern TypeScript utility library.",
"keywords": [
"stdlib",
"type-level",
"functional",
"functional-programming",
"immutable",
"lazy-evaluation",
"collection",
"map",
"filter",
"take",
"drop",
"takeLast",
"dropLast",
"shuffle",
"sort",
"join",
"split",
"chunk",
"minBy",
"maxBy",
"groupBy",
"toMultiset",
"permutation",
"set-operation",
"difference-set",
"union-set",
"intersection-set",
"isDisjoint",
"type-predicate",
"assertion-function",
"assert",
"lexicographic-order",
"pipe",
"method-chaining",
"curry",
"modulo",
"wheel-factorization",
"random-integer",
"capitalize",
"toCamelCase",
"toSnakeCase",
"toKebabCase",
"nullish",
"integer-range",
"NonEmptyArray",
"NestedProperty",
"forever"
],
"homepage": "https://github.com/ootidea/base-up#readme",
"bugs": {
"url": "https://github.com/ootidea/base-up/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ootidea/base-up.git"
},
"license": "CC0-1.0",
"author": "ootidea",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"fix": "run-p \"fix:*\"",
"fix:biome": "biome check --write",
"fix:package-json": "sort-package-json",
"check": "run-p \"check:*\"",
"check:type": "tsc --noEmit",
"check:biome": "biome check",
"check:test": "vitest run --silent=false",
"preversion": "pnpm check && pnpm build",
"postversion": "npm publish ./ && git push --follow-tags"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@tsconfig/strictest": "^2.0.1",
"npm-run-all2": "^6.2.3",
"sort-package-json": "^2.10.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"packageManager": "[email protected]"
}