@spicyapi/proxy 0.1.0 → 0.1.1

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 (1) hide show
  1. package/package.json +10 -5
package/package.json CHANGED
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "@spicyapi/proxy",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Server-side proxy for SpicyAPI: let browser, mobile and desktop apps call the API without ever holding an API key.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/SpicyAPI/spicy-devkit.git",
10
- "directory": "packages/proxy"
9
+ "url": "git+https://github.com/Spicy-API/spicy-proxy.git"
11
10
  },
12
11
  "homepage": "https://spicyapi.ai",
13
12
  "bugs": {
14
- "url": "https://spicyapi.ai/contact"
13
+ "url": "https://github.com/Spicy-API/spicy-proxy/issues"
15
14
  },
16
15
  "publishConfig": {
17
16
  "access": "public"
@@ -43,6 +42,12 @@
43
42
  ],
44
43
  "scripts": {
45
44
  "build": "tsc -p tsconfig.json",
46
- "typecheck": "tsc -p tsconfig.json --noEmit"
45
+ "typecheck": "tsc -p tsconfig.json --noEmit",
46
+ "test": "npm run build && node --test dist/test/*.test.js"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "26.4.0",
50
+ "prettier": "3.9.6",
51
+ "typescript": "5.9.3"
47
52
  }
48
53
  }