-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
{
"name": "get-or-throw",
"version": "2.0.1",
"description": "A convenience function for safely getting values from dynamic objects and arrays",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"clean": "del dist tsconfig.tsbuildinfo",
"prepare": "pnpm build",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "vitest",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x80/get-or-throw.git"
},
"keywords": [
"typescript",
"indexed",
"unchecked",
"noUncheckedIndexedAccess"
],
"author": "Thijs Koerselman",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x80/get-or-throw/issues"
},
"homepage": "https://github.com/0x80/get-or-throw#readme",
"packageManager": "[email protected]+sha256.56a9e76b51796ca7f73b85e44cf83712862091f4d498c0ce4d5b7ecdc6ba18f7",
"devDependencies": {
"@codecompose/typescript-config": "^1.1.2",
"@eslint/js": "^9.22.0",
"del-cli": "^5.1.0",
"eslint": "^9.22.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.26.0",
"vitest": "^3.0.8"
}
}