@parhelia/alpaca-debug 0.1.12331

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 +60 -0
  2. package/styles.css +8 -0
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@parhelia/alpaca-debug",
3
+ "version": "0.1.12331",
4
+ "type": "module",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "main": "./dist/index.js",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "development": "./src/index.tsx",
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
+ },
17
+ "./styles.css": "./styles.css"
18
+ },
19
+ "files": [
20
+ "dist/",
21
+ "styles.css",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsc -p tsconfig.build.json",
27
+ "lint": "eslint . --max-warnings 0",
28
+ "generate:component": "turbo gen react-component",
29
+ "check-types": "tsc --noEmit"
30
+ },
31
+ "devDependencies": {
32
+ "@repo/eslint-config": "*",
33
+ "@repo/typescript-config": "*",
34
+ "@tailwindcss/postcss": "^4.1.18",
35
+ "@turbo/gen": "^2.4.4",
36
+ "@types/node": "^22.13.9",
37
+ "@types/react": "19.2.2",
38
+ "@types/react-dom": "19.2.2",
39
+ "eslint": "^9.22.0",
40
+ "tailwindcss": "^4.1.18",
41
+ "typescript": "5.8.2"
42
+ },
43
+ "dependencies": {
44
+ "@graphiql/plugin-explorer": "^5.1.1",
45
+ "@graphiql/react": "^0.37.3",
46
+ "@parhelia/core": "*",
47
+ "@uiw/react-textarea-code-editor": "^3.1.1",
48
+ "graphiql": "^5.2.2",
49
+ "graphql": "^15.10.1",
50
+ "lucide-react": "^0.486.0",
51
+ "postcss": "^8.5.3",
52
+ "react": "19.2.3",
53
+ "react-dom": "19.2.3",
54
+ "react-inspector": "^6.0.2"
55
+ },
56
+ "overrides": {
57
+ "@types/react": "19.2.2",
58
+ "@types/react-dom": "19.2.2"
59
+ }
60
+ }
package/styles.css ADDED
@@ -0,0 +1,8 @@
1
+ /*
2
+ This package intentionally does NOT ship a Tailwind utilities bundle.
3
+ The consuming app should generate utilities by scanning this package's
4
+ compiled JS output.
5
+ */
6
+
7
+ @source "./src/**/*.{js,ts,jsx,tsx}";
8
+ @source "./dist/**/*.js";