-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.19 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
{
"name": "narrowland",
"version": "1.7.0",
"description": "A lightweight TypeScript library providing type-safe assertions, type guards, and error handling utilities.",
"author": "Marek Honzal <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"type-guards",
"assert",
"invariant",
"narrowing"
],
"repository": {
"type": "git",
"url": "https://github.com/marekh19/narrowland.git"
},
"bugs": {
"url": "https://github.com/marekh19/narrowland/issues"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.mts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "tsdown",
"lint:fix": "biome lint --write",
"lint:check": "biome lint",
"dev": "tsdown --watch",
"format:fix": "biome format --write",
"format:check": "biome format",
"test": "vitest run --typecheck",
"test:ci": "tsc -p tsconfig.test.json && pnpm run test && pnpm run test:size",
"test:size": "size-limit",
"test:coverage": "vitest run --typecheck --coverage",
"typecheck": "tsc --noEmit",
"knip": "knip",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"husky": "^9.1.7",
"knip": "^6.4.1",
"lint-staged": "^16.4.0",
"preset-small-lib": "link:@size/limit/preset-small-lib",
"size-limit": "^12.1.0",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"packageManager": "[email protected]+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}