@vltpkg/xdg 0.0.0-9 → 1.0.0-rc.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/README.md +1 -1
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -9,7 +9,7 @@ namespaced to a specific app-name subfolder.
9
9
  ## Usage
10
10
 
11
11
  ```js
12
- import XDG from '@vltpkg/xdg'
12
+ import { XDG } from '@vltpkg/xdg'
13
13
 
14
14
  // instantiate with the name of your thing.
15
15
  const xdg = new XDG('vlt')
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@vltpkg/xdg",
3
3
  "description": "platform-specific app directories following XDG spec",
4
- "version": "0.0.0-9",
4
+ "version": "1.0.0-rc.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/vltpkg/vltpkg.git",
8
8
  "directory": "src/xdg"
9
9
  },
10
+ "author": "vlt technology inc. <support@vlt.sh> (http://vlt.sh)",
10
11
  "tshy": {
11
12
  "selfLink": false,
12
13
  "liveDev": true,
@@ -19,16 +20,15 @@
19
20
  }
20
21
  },
21
22
  "devDependencies": {
22
- "@eslint/js": "^9.20.0",
23
- "@types/eslint__js": "^8.42.3",
24
- "@types/node": "^22.13.1",
25
- "eslint": "^9.20.0",
26
- "prettier": "^3.4.2",
23
+ "@eslint/js": "^9.34.0",
24
+ "@types/node": "^22.17.2",
25
+ "eslint": "^9.34.0",
26
+ "prettier": "^3.6.2",
27
27
  "tap": "^21.1.0",
28
28
  "tshy": "^3.0.2",
29
- "typedoc": "0.27.6",
29
+ "typedoc": "~0.27.9",
30
30
  "typescript": "5.7.3",
31
- "typescript-eslint": "^8.23.0"
31
+ "typescript-eslint": "^8.40.0"
32
32
  },
33
33
  "license": "BSD-2-Clause-Patent",
34
34
  "engines": {
@@ -60,6 +60,7 @@
60
60
  "snap": "tap",
61
61
  "test": "tap",
62
62
  "posttest": "tsc --noEmit",
63
+ "tshy": "tshy",
63
64
  "typecheck": "tsc --noEmit"
64
65
  }
65
66
  }