-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.76 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.76 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "typesafe-ts",
"version": "1.7.1",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./optional": {
"types": "./dist/optional/index.d.ts",
"default": "./dist/optional/index.js"
},
"./optional/lint": {
"types": "./dist/optional/lint.d.ts",
"default": "./dist/optional/lint.js"
},
"./result": {
"types": "./dist/result/index.d.ts",
"default": "./dist/result/index.js"
},
"./result/lint": {
"types": "./dist/result/lint.d.ts",
"default": "./dist/result/lint.js"
},
"./brand": {
"types": "./dist/brand/index.d.ts",
"default": "./dist/brand/index.js"
},
"./assert": {
"types": "./dist/assert/index.d.ts",
"default": "./dist/assert/index.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json && esbuild \"dist/**/*.js\" --outdir=dist --outbase=dist --format=esm --minify --legal-comments=none --sourcemap --allow-overwrite",
"clean": "rm -rf dist",
"test": "node --test --experimental-test-coverage",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint \"src/**/*.ts\"",
"lint:file": "eslint",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"security:audit": "npm audit --audit-level=moderate",
"security:fix": "npm audit fix",
"docs:build": "typedoc --options .config/typedoc.config.js",
"docs:serve": "typedoc --options .config/typedoc.config.js --watch",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"prepare": "husky .config/husky"
},
"description": "TypeScript utilities for type-safe error handling and optional values",
"keywords": [
"typescript",
"monads",
"optional",
"result",
"brand",
"branded-types",
"tagged-unions",
"error-handling",
"type-safe"
],
"homepage": "https://github.com/Masstronaut/typesafe-ts#readme",
"repository": {
"type": "git",
"url": "https://github.com/Masstronaut/typesafe-ts.git"
},
"bugs": {
"url": "https://github.com/Masstronaut/typesafe-ts/issues"
},
"files": [
"dist/",
"LICENSE.txt",
"readme.md"
],
"author": "Allan Deutsch",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^13.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@typescript-eslint/rule-tester": "^8.39.0",
"@typescript-eslint/utils": "^8.39.0",
"esbuild": "^0.25.10",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"semantic-release": "^25.0.2",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint",
"bash -c 'npm run typecheck'"
]
},
"peerDependencies": {
"@typescript-eslint/utils": "^8.39.0"
}
}