-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.59 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
53
54
55
56
57
58
59
{
"name": "@clickbar/dot-diver",
"version": "2.0.0",
"description": "Types and utilities to access object properties by dot notation.",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"scripts": {
"build": "vite build",
"test": "vitest run --typecheck",
"lint": "eslint ./",
"prettier": "prettier . --cache",
"fix": "pnpm lint --fix && pnpm prettier --write",
"perf": "tsc --noEmit --extendedDiagnostics --p ./performance/tsconfig.json"
},
"keywords": [
"ts",
"types",
"typescript",
"util",
"utility",
"utilities",
"dot",
"path",
"dot-path"
],
"author": "clickbar.",
"repository": "https://github.com/clickbar/dot-diver.git",
"bugs": {
"url": "https://github.com/clickbar/dot-diver/issues"
},
"license": "MIT",
"maintainers": [
"Daniel Thoma <[email protected]> (https://github.com/djfhe)",
"Tobias Kröll <[email protected]> (https://github.com/saibotk)"
],
"devDependencies": {
"@clickbar/eslint-config-typescript": "^11.0.4",
"@types/node": "^22.4.0",
"@vue/reactivity": "^3.4.38",
"eslint": "^9.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}