-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "data-path",
"version": "2.0.1",
"description": "Type-safe object property paths in TypeScript — build, compare, and manipulate with lambda expressions. Zero dependencies.",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --sourcemap",
"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",
"property-path",
"type-safe",
"proxy",
"lambda",
"dot-notation",
"accessor",
"immutable",
"path-algebra",
"state-management",
"form"
],
"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://sergeyshmakov.github.io/data-path/",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"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"
},
"volta": {
"node": "24.14.0"
}
}