@i4ctime/q-ring 0.9.2 → 0.9.4

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 +2 -2
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  **The first quantum-inspired keyring built specifically for AI coding agents.**
8
8
 
9
9
  [![NPM Version](https://img.shields.io/npm/v/@i4ctime/q-ring?style=flat-square&color=0ea5e9)](https://www.npmjs.com/package/@i4ctime/q-ring)
10
- [![Docs](https://img.shields.io/badge/docs-website-0ea5e9?style=flat-square)](https://i4ctime.github.io/quantum_ring/docs)
10
+ [![Docs](https://img.shields.io/badge/docs-website-0ea5e9?style=flat-square)](https://qring.i4c.studio/docs)
11
11
  [![MCP Tools](https://img.shields.io/badge/MCP_tools-44-0ea5e9?style=flat-square)](https://glama.ai/mcp/servers/I4cTime/quantum_ring)
12
12
  [![License](https://img.shields.io/npm/l/@i4ctime/q-ring?style=flat-square&color=0ea5e9)](https://github.com/I4cTime/quantum_ring/blob/main/LICENSE)
13
13
 
@@ -17,7 +17,7 @@
17
17
 
18
18
  Stop pasting API keys into plain-text `.env` files or wrestling with clunky secret managers. **q-ring** securely anchors your credentials to your OS's native vault (macOS Keychain, Linux Secret Service, Windows Credential Vault) and supercharges them with mechanics from quantum physics.
19
19
 
20
- > 📖 **[View the Official Documentation](https://i4ctime.github.io/quantum_ring/docs)** for a complete CLI reference, MCP prompt cookbooks, and architecture details.
20
+ > 📖 **[View the Official Documentation](https://qring.i4c.studio/docs)** for a complete CLI reference, MCP prompt cookbooks, and architecture details.
21
21
 
22
22
  ### Why q-ring?
23
23
  - **Superposition:** Store one key with multiple states (dev/staging/prod) that collapse based on context.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i4ctime/q-ring",
3
- "version": "0.9.2",
3
+ "version": "0.9.4",
4
4
  "mcpName": "io.github.I4cTime/q-ring",
5
5
  "description": "Quantum keyring for AI coding tools — Cursor, Kiro, Claude Code. Secrets, superposition, entanglement, MCP.",
6
6
  "type": "module",
@@ -19,6 +19,8 @@
19
19
  "build": "tsup",
20
20
  "dev": "tsup --watch",
21
21
  "typecheck": "tsc --noEmit",
22
+ "test": "vitest",
23
+ "test:ci": "vitest run",
22
24
  "prepublishOnly": "pnpm run build"
23
25
  },
24
26
  "keywords": [
@@ -51,6 +53,7 @@
51
53
  "devDependencies": {
52
54
  "@types/node": "^25.5.0",
53
55
  "tsup": "^8.5.1",
54
- "typescript": "^5.9.3"
56
+ "typescript": "^5.9.3",
57
+ "vitest": "^4.1.1"
55
58
  }
56
59
  }