@merit-systems/echo-next-sdk 0.0.31-test.f8e535d3.0 → 0.0.31

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/package.json +22 -20
  2. package/LICENSE +0 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@merit-systems/echo-next-sdk",
3
- "version": "0.0.31-test.f8e535d3.0",
3
+ "version": "0.0.31",
4
4
  "description": "Next.js SDK for Echo",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -15,6 +15,21 @@
15
15
  "import": "./dist/client.js"
16
16
  }
17
17
  },
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "lint": "pnpx eslint src/**/*.ts",
22
+ "lint:fix": "pnpx eslint src/**/*.ts --fix",
23
+ "type-check": "tsc --noEmit",
24
+ "format": "prettier --write src",
25
+ "test": "echo 'no tests'",
26
+ "test:unit": "echo 'no tests'",
27
+ "test:watch": "echo 'no tests'",
28
+ "prepublishOnly": "pnpm run build",
29
+ "prepare": "tsup src/index.ts src/client.ts --dts --format esm --out-dir dist",
30
+ "publish:test": "pnpm publish --access public --dry-run",
31
+ "publish:real": "pnpm publish --access public"
32
+ },
18
33
  "keywords": [
19
34
  "echo",
20
35
  "typescript",
@@ -24,11 +39,11 @@
24
39
  "author": "Merit Systems",
25
40
  "license": "MIT",
26
41
  "dependencies": {
42
+ "@merit-systems/echo-typescript-sdk": "workspace:*",
43
+ "@merit-systems/echo-react-sdk": "workspace:*",
27
44
  "ai": "^5.0.17",
28
45
  "jwt-decode": "^4.0.0",
29
- "swr": "^2.3.1",
30
- "@merit-systems/echo-typescript-sdk": "1.0.24-test.f8e535d3.0",
31
- "@merit-systems/echo-react-sdk": "1.0.40-test.f8e535d3.0"
46
+ "swr": "^2.3.1"
32
47
  },
33
48
  "peerDependencies": {
34
49
  "next": ">=15.0.0",
@@ -40,7 +55,7 @@
40
55
  "@typescript-eslint/eslint-plugin": "^8.34.1",
41
56
  "@typescript-eslint/parser": "^8.34.1",
42
57
  "eslint": "^9.29.0",
43
- "next": "^15.1.4",
58
+ "next": "^15.1.11",
44
59
  "tsup": "^8.5.0",
45
60
  "typescript": "^5.8.3",
46
61
  "vitest": "^3.2.3",
@@ -51,18 +66,5 @@
51
66
  },
52
67
  "files": [
53
68
  "dist/**/*"
54
- ],
55
- "scripts": {
56
- "build": "tsup",
57
- "dev": "tsup --watch",
58
- "lint": "pnpx eslint src/**/*.ts",
59
- "lint:fix": "pnpx eslint src/**/*.ts --fix",
60
- "type-check": "tsc --noEmit",
61
- "format": "prettier --write src",
62
- "test": "echo 'no tests'",
63
- "test:unit": "echo 'no tests'",
64
- "test:watch": "echo 'no tests'",
65
- "publish:test": "pnpm publish --access public --dry-run",
66
- "publish:real": "pnpm publish --access public"
67
- }
68
- }
69
+ ]
70
+ }
package/LICENSE DELETED
@@ -1,13 +0,0 @@
1
- Copyright 2025 Merit Systems, Inc
2
-
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
6
-
7
- http://www.apache.org/licenses/LICENSE-2.0
8
-
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- See the License for the specific language governing permissions and
13
- limitations under the License.