-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "tiinvo",
"version": "4.0.0-rc3",
"author": "Paolo Roth <octod>",
"license": "MIT",
"description": "A library of types and utilities for your TypeScript and JavaScript projects",
"types": "./index.d.ts",
"readme": "./README.md",
"type": "module",
"main": "./index.js",
"module": "./index.js",
"exports": {
".": "./index.js",
"./*": "./*.js"
},
"keywords": [
"array",
"functional programming",
"functions",
"functors",
"monads",
"number",
"option",
"pipe",
"predicate",
"sequence",
"string",
"tuple",
"typed sequence",
"types",
"utility"
],
"scripts": {
"build": "tsc -p .",
"changelog": "npx standard-changelog",
"clean": "tsc --build --clean",
"docs": "typedoc --out docs src/index.ts",
"test": "vitest run --coverage",
"deploy": "npm test && npm run clean && npm run build && npm publish && npm run clean",
"upgrade-interactive": "npx npm-check --update"
},
"homepage": "https://github.com/octod/tiinvo",
"repository": {
"type": "git",
"url": "git+https://github.com/octod/tiinvo.git"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^2.1.3",
"typedoc": "^0.26.10",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}