-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "pathtrace",
"version": "2.2.0",
"description": "Simplifies working with nested objects and arrays by providing easy methods to retrieve, set, and check values at any path.",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"keywords": [
"path",
"path-info",
"path-value",
"expand-path",
"path-retrival",
"get-path",
"nested-objects",
"deep-access"
],
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tada5hi/pathtrace.git"
},
"bugs": {
"url": "https://github.com/tada5hi/pathtrace/issues"
},
"homepage": "https://github.com/tada5hi/pathtrace#readme",
"devDependencies": {
"@tada5hi/commitlint-config": "^1.3.1",
"@tada5hi/eslint-config": "^2.0.2",
"@tada5hi/tsconfig": "^0.7.2",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"tsdown": "^0.21.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.1"
}
}