-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "get-or-throw",
"version": "3.0.1",
"description": "A convenience function for safely getting values from dynamic objects and arrays",
"keywords": [
"indexed",
"noUncheckedIndexedAccess",
"typescript",
"unchecked"
],
"homepage": "https://get-or-throw.codecompose.dev",
"bugs": {
"url": "https://github.com/0x80/get-or-throw/issues"
},
"license": "MIT",
"author": "Thijs Koerselman",
"repository": {
"type": "git",
"url": "git+https://github.com/0x80/get-or-throw.git"
},
"files": [
"dist",
"src"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"clean": "del dist tsconfig.tsbuildinfo",
"prepare": "pnpm build",
"check-lint": "oxlint -c .oxlintrc.json --type-aware",
"format": "oxfmt .",
"check-format": "oxfmt --check .",
"check-types": "tsc --noEmit",
"test": "vitest run",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@codecompose/typescript-config": "^3.1.0",
"del-cli": "^7.0.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.20.0",
"tsdown": "^0.21.7",
"typescript": "6.0.2",
"vite": "^8.0.5",
"vitepress": "^1.6.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@9.8.0+sha256.56a9e76b51796ca7f73b85e44cf83712862091f4d498c0ce4d5b7ecdc6ba18f7"
}