@syrin/iris 0.4.0

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 ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "@syrin/iris",
3
+ "version": "0.4.0",
4
+ "description": "One-install Iris: the dev-only SDK (browser + React adapter) and the spec runner under one package, with subpaths for the source-mapping plugins and the MCP server.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": "github:syrin-labs/iris",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "bin": {
12
+ "iris": "./dist/cli.js"
13
+ },
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "default": "./dist/index.js"
18
+ },
19
+ "./server": {
20
+ "types": "./dist/server.d.ts",
21
+ "default": "./dist/server.js"
22
+ },
23
+ "./test": {
24
+ "types": "./dist/test.d.ts",
25
+ "default": "./dist/test.js"
26
+ },
27
+ "./next": {
28
+ "types": "./dist/next.d.ts",
29
+ "default": "./dist/next.js"
30
+ },
31
+ "./babel": {
32
+ "types": "./dist/babel.d.ts",
33
+ "default": "./dist/babel.js"
34
+ },
35
+ "./eslint": {
36
+ "types": "./dist/eslint.d.ts",
37
+ "default": "./dist/eslint.js"
38
+ }
39
+ },
40
+ "files": [
41
+ "dist"
42
+ ],
43
+ "dependencies": {
44
+ "@babel/core": "^7.26.0",
45
+ "@modelcontextprotocol/sdk": "^1.13.0",
46
+ "@testing-library/dom": "^10.4.1",
47
+ "@typescript-eslint/utils": "^8.20.0",
48
+ "ws": "^8.18.0",
49
+ "zod": "^3.24.1"
50
+ },
51
+ "devDependencies": {
52
+ "@types/ws": "^8.5.13",
53
+ "tsup": "^8.3.5",
54
+ "typescript": "^5.6.0",
55
+ "@syrin/iris-eslint-plugin": "0.4.0",
56
+ "@syrin/iris-babel-plugin": "0.4.0",
57
+ "@syrin/iris-browser": "0.4.0",
58
+ "@syrin/iris-next": "0.4.0",
59
+ "@syrin/iris-protocol": "0.4.0",
60
+ "@syrin/iris-react": "0.4.0",
61
+ "@syrin/iris-server": "0.4.0",
62
+ "@syrin/iris-test": "0.4.0"
63
+ },
64
+ "optionalDependencies": {
65
+ "pixelmatch": "^7.2.0",
66
+ "playwright": "^1.48.0",
67
+ "pngjs": "^7.0.0"
68
+ },
69
+ "peerDependencies": {
70
+ "eslint": ">=9",
71
+ "next": ">=13",
72
+ "react": ">=18",
73
+ "vitest": "^3.0.0"
74
+ },
75
+ "peerDependenciesMeta": {
76
+ "eslint": {
77
+ "optional": true
78
+ },
79
+ "next": {
80
+ "optional": true
81
+ },
82
+ "react": {
83
+ "optional": true
84
+ },
85
+ "vitest": {
86
+ "optional": true
87
+ }
88
+ },
89
+ "scripts": {
90
+ "build": "tsup",
91
+ "typecheck": "tsc -p tsconfig.json --noEmit"
92
+ }
93
+ }