-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "typesafe-deep-paths",
"version": "1.1.2",
"description": "A TypeScript utility package to safely access and modify deeply nested properties within objects using typed string paths.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/besotti/typesafe-deep-paths.git"
},
"keywords": [
"typescript",
"object-path",
"deep-paths",
"typesafe-deep-paths",
"utility",
"nested properties",
"autocompletion",
"path access",
"set path",
"get path"
],
"author": "Benedikt Sottong <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"eslint": "^8",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"@typescript-eslint/eslint-plugin": "^8.8.0"
}
}