-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "@fcrozatier/ts-helpers",
"version": "2.6.0",
"type": "module",
"description": "A collection of convenience ts utilities",
"scripts": {
"format": "prettier --write .",
"test": "vitest",
"build": "tsc",
"prepublishOnly": "pnpm build",
"postpublish": "git push --follow-tags"
},
"main": "./build/index.js",
"files": [
"./build"
],
"exports": {
".": "./build/index.js",
"./arrays": "./build/arrays.js",
"./functions": "./build/functions.js",
"./heap": "./build/heap.js",
"./numbers": "./build/numbers.js",
"./objects": "./build/objects.js",
"./promises": "./build/promises.js",
"./random": "./build/random.js",
"./sets": "./build/sets.js",
"./strings": "./build/strings.js",
"./type": "./build/type.js"
},
"keywords": [
"utilities",
"helpers"
],
"author": "Frédéric Crozatier",
"repository": {
"type": "git",
"url": "git+https://github.com/fcrozatier/ts-helpers.git"
},
"bugs": {
"url": "https://github.com/fcrozatier/ts-helpers/issues"
},
"license": "MIT",
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}