@dephub/path 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -1
  2. package/package.json +15 -5
package/README.md CHANGED
@@ -4,7 +4,6 @@
4
4
 
5
5
  [![NPM version](https://img.shields.io/npm/v/@dephub/path.svg?style=flat)](https://npmjs.org/package/@dephub/path)
6
6
  [![ESM-only](https://img.shields.io/badge/ESM-only-brightgreen?style=flat)](https://nodejs.org/)
7
- [![Node.js version](https://img.shields.io/badge/node-%3E%3D22.5.0-brightgreen.svg)](https://nodejs.org/)
8
7
 
9
8
  ---
10
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dephub/path",
3
3
  "type": "module",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "description": "Path resolution utilities for Node.js with ESM support - cwd and dirname helpers",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",
@@ -30,18 +30,28 @@
30
30
  "dist"
31
31
  ],
32
32
  "license": "MIT",
33
- "homepage": "https://github.com/dephubjs/path#readme",
33
+ "homepage": "https://github.com/estarlincito/dephub-path#readme",
34
34
  "repository": {
35
35
  "type": "git",
36
- "url": "https://github.com/dephubjs/path.git",
37
- "directory": "packages/path"
36
+ "url": "https://github.com/estarlincito/dephub-path.git"
38
37
  },
39
38
  "bugs": {
40
- "url": "https://github.com/dephubjs/path/issues"
39
+ "url": "https://github.com/estarlincito/dephub-path/issues"
41
40
  },
42
41
  "publishConfig": {
43
42
  "access": "public"
44
43
  },
44
+ "devDependencies": {
45
+ "@dephub/glob": "^1.0.0",
46
+ "@dephub/lint": "^1.0.0",
47
+ "@dephub/lint-ts": "^1.0.0",
48
+ "@dephub/path": "^1.0.0",
49
+ "@types/node": "^24.3.1",
50
+ "eslint": "^9.37.0",
51
+ "typescript": "^5.9.2",
52
+ "vite": "^7.1.4",
53
+ "vite-plugin-dts": "^4.5.4"
54
+ },
45
55
  "scripts": {
46
56
  "release": "pnpm publish",
47
57
  "check-types": "tsc --noEmit --skipLibCheck",