-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.58 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.58 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
67
68
69
70
{
"name": "data-path",
"version": "1.0.0",
"description": "A simple, modern, zero-dependency, and fully type-safe library for building, comparing, and manipulating object property paths using TypeScript lambda expressions.",
"license": "ISC",
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "npm run build -- --watch",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"test": "vitest run --typecheck",
"test:watch": "vitest --typecheck"
},
"keywords": [
"typescript",
"path",
"object-path",
"type-safe",
"proxy",
"dot-notation",
"property-path",
"accessor",
"data-path"
],
"author": {
"name": "Sergei Shmakov",
"url": "https://github.com/sergeyshmakov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergeyshmakov/data-path.git"
},
"bugs": {
"url": "https://github.com/sergeyshmakov/data-path/issues"
},
"homepage": "https://github.com/sergeyshmakov/data-path#readme",
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"husky": "^9.1.7",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "24.14.0"
}
}