@dephub/path 1.0.0 → 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.
- package/LICENSE +1 -1
- package/README.md +0 -1
- package/package.json +15 -7
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://npmjs.org/package/@dephub/path)
|
|
6
6
|
[](https://nodejs.org/)
|
|
7
|
-
[](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.
|
|
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,23 +30,31 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"license": "MIT",
|
|
33
|
-
"homepage": "https://github.com/
|
|
33
|
+
"homepage": "https://github.com/dephub-js/path#readme",
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
36
|
-
"url": "https://github.com/
|
|
37
|
-
"directory": "packages/path"
|
|
36
|
+
"url": "https://github.com/dephub-js/path.git"
|
|
38
37
|
},
|
|
39
38
|
"bugs": {
|
|
40
|
-
"url": "https://github.com/
|
|
39
|
+
"url": "https://github.com/dephub-js/path/issues"
|
|
41
40
|
},
|
|
42
41
|
"publishConfig": {
|
|
43
42
|
"access": "public"
|
|
44
43
|
},
|
|
44
|
+
"devDependencies": {
|
|
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",
|
|
51
|
+
"vite-plugin-dts": "^4.5.4"
|
|
52
|
+
},
|
|
45
53
|
"scripts": {
|
|
46
54
|
"release": "pnpm publish",
|
|
55
|
+
"docs": "lineo md 'src/**/*.ts' --outFile code.md --outDir temp",
|
|
47
56
|
"check-types": "tsc --noEmit --skipLibCheck",
|
|
48
|
-
"lint": "
|
|
49
|
-
"lint:fix": "lint . --fix",
|
|
57
|
+
"lint": "eslint . --fix --max-warnings 0",
|
|
50
58
|
"clean": "rm -rf dist",
|
|
51
59
|
"build": "vite build",
|
|
52
60
|
"dev": "vite build -w --mode development"
|