@dephub/path 1.0.1 → 1.0.2

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/LICENSE +1 -1
  2. package/package.json +12 -14
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  # MIT License
2
2
 
3
- Copyright (c) 2025 Estarlin R
3
+ Copyright (c) 2025-2026 Estarlin R
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dephub/path",
3
3
  "type": "module",
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
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,33 +30,31 @@
30
30
  "dist"
31
31
  ],
32
32
  "license": "MIT",
33
- "homepage": "https://github.com/estarlincito/dephub-path#readme",
33
+ "homepage": "https://github.com/dephub-js/path#readme",
34
34
  "repository": {
35
35
  "type": "git",
36
- "url": "https://github.com/estarlincito/dephub-path.git"
36
+ "url": "https://github.com/dephub-js/path.git"
37
37
  },
38
38
  "bugs": {
39
- "url": "https://github.com/estarlincito/dephub-path/issues"
39
+ "url": "https://github.com/dephub-js/path/issues"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
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",
45
+ "@dephub/eslint-ts": "^1.0.2",
46
+ "@dephub/glob": "^1.0.2",
47
+ "@types/node": "^25.3.3",
48
+ "eslint": "^10.0.2",
49
+ "typescript": "^5.9.3",
50
+ "vite": "^7.3.1",
53
51
  "vite-plugin-dts": "^4.5.4"
54
52
  },
55
53
  "scripts": {
56
54
  "release": "pnpm publish",
55
+ "docs": "lineo md 'src/**/*.ts' --outFile code.md --outDir temp",
57
56
  "check-types": "tsc --noEmit --skipLibCheck",
58
- "lint": "lint . --max-warnings 0",
59
- "lint:fix": "lint . --fix",
57
+ "lint": "eslint . --fix --max-warnings 0",
60
58
  "clean": "rm -rf dist",
61
59
  "build": "vite build",
62
60
  "dev": "vite build -w --mode development"