@sanity-labs/slides 0.0.0 → 0.1.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/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity-labs/slides",
3
- "version": "0.0.0",
3
+ "version": "0.1.0",
4
4
  "description": "Brand-locked PowerPoint generation for LLMs. Write a slide template in React; Claude (or any MCP client) writes the deck through the bundled MCP server without drifting on fonts, colors, or layout.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -29,10 +29,22 @@
29
29
  "main": "./src/index.ts",
30
30
  "types": "./src/index.ts",
31
31
  "exports": {
32
- ".": "./src/index.ts",
33
- "./mcp": "./src/mcp/index.ts",
34
- "./dev": "./src/dev/index.ts",
35
- "./scaffold": "./src/scaffold/index.ts",
32
+ ".": {
33
+ "types": "./dist/index.d.ts",
34
+ "import": "./dist/index.js"
35
+ },
36
+ "./mcp": {
37
+ "types": "./dist/mcp/index.d.ts",
38
+ "import": "./dist/mcp/index.js"
39
+ },
40
+ "./dev": {
41
+ "types": "./dist/dev/index.d.ts",
42
+ "import": "./dist/dev/index.js"
43
+ },
44
+ "./scaffold": {
45
+ "types": "./dist/scaffold/index.d.ts",
46
+ "import": "./dist/scaffold/index.js"
47
+ },
36
48
  "./skill": "./SKILL.md",
37
49
  "./package.json": "./package.json"
38
50
  },
@@ -46,21 +58,6 @@
46
58
  "SKILL.md",
47
59
  "README.md"
48
60
  ],
49
- "scripts": {
50
- "build": "tsc -p tsconfig.build.json && node ./scripts/copy-static-assets.mjs",
51
- "test": "vitest run",
52
- "test:watch": "vitest",
53
- "typecheck": "tsc --noEmit -p tsconfig.json",
54
- "lint": "eslint .",
55
- "format": "prettier --write .",
56
- "format:check": "prettier --check .",
57
- "knip": "knip",
58
- "verify-bins": "bash scripts/verify-bins.sh",
59
- "verify": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run build && pnpm run test && pnpm run knip && pnpm run verify-bins",
60
- "changeset": "changeset",
61
- "changeset:version": "changeset version",
62
- "changeset:publish": "pnpm run build && changeset publish"
63
- },
64
61
  "dependencies": {
65
62
  "@modelcontextprotocol/sdk": "^1.29.0",
66
63
  "@resvg/resvg-js": "^2.6.2",
@@ -135,30 +132,24 @@
135
132
  "vitest": "2.1.9"
136
133
  },
137
134
  "publishConfig": {
138
- "access": "public",
139
- "exports": {
140
- ".": {
141
- "types": "./dist/index.d.ts",
142
- "import": "./dist/index.js"
143
- },
144
- "./mcp": {
145
- "types": "./dist/mcp/index.d.ts",
146
- "import": "./dist/mcp/index.js"
147
- },
148
- "./dev": {
149
- "types": "./dist/dev/index.d.ts",
150
- "import": "./dist/dev/index.js"
151
- },
152
- "./scaffold": {
153
- "types": "./dist/scaffold/index.d.ts",
154
- "import": "./dist/scaffold/index.js"
155
- },
156
- "./skill": "./SKILL.md",
157
- "./package.json": "./package.json"
158
- }
135
+ "access": "public"
159
136
  },
160
137
  "engines": {
161
138
  "node": ">=20"
162
139
  },
163
- "packageManager": "pnpm@9.0.0"
164
- }
140
+ "scripts": {
141
+ "build": "tsc -p tsconfig.build.json && node ./scripts/copy-static-assets.mjs",
142
+ "test": "vitest run",
143
+ "test:watch": "vitest",
144
+ "typecheck": "tsc --noEmit -p tsconfig.json",
145
+ "lint": "eslint .",
146
+ "format": "prettier --write .",
147
+ "format:check": "prettier --check .",
148
+ "knip": "knip",
149
+ "verify-bins": "bash scripts/verify-bins.sh",
150
+ "verify": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run build && pnpm run test && pnpm run knip && pnpm run verify-bins",
151
+ "changeset": "changeset",
152
+ "changeset:version": "changeset version",
153
+ "changeset:publish": "pnpm run build && changeset publish"
154
+ }
155
+ }
File without changes
File without changes