@prompts-gpt/client 0.2.0 → 0.2.3

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/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@prompts-gpt/client",
3
- "version": "0.2.0",
3
+ "version": "0.2.3",
4
4
  "description": "CLI and SDK for pulling Prompts-GPT prompt packs into local projects and syncing agent-readable files for Codex, Cursor, VS Code, and GitHub Copilot.",
5
5
  "type": "module",
6
- "license": "MIT",
6
+ "homepage": "https://prompts-gpt.com",
7
+ "bugs": {
8
+ "email": "support@prompts-gpt.com"
9
+ },
10
+ "license": "SEE LICENSE IN LICENSE",
7
11
  "author": "Prompts-GPT <support@prompts-gpt.com> (https://prompts-gpt.com)",
8
12
  "sideEffects": false,
9
13
  "keywords": [
@@ -34,15 +38,11 @@
34
38
  "exports": {
35
39
  ".": {
36
40
  "types": "./dist/index.d.ts",
37
- "import": "./dist/index.js"
41
+ "import": "./dist/index.js",
42
+ "default": "./dist/index.js"
38
43
  },
39
44
  "./package.json": "./package.json"
40
45
  },
41
- "typesVersions": {
42
- "*": {
43
- ".": ["dist/index.d.ts"]
44
- }
45
- },
46
46
  "files": [
47
47
  "dist",
48
48
  "README.md",
@@ -56,6 +56,7 @@
56
56
  "build": "tsc && node scripts/mark-cli-executable.mjs",
57
57
  "clean": "rm -rf dist",
58
58
  "prepublishOnly": "npm run clean && npm run build",
59
+ "test": "npm run build && node --test tests/*.test.mjs",
59
60
  "typecheck": "tsc --noEmit"
60
61
  },
61
62
  "publishConfig": {