@tour-kit/studio 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.
Files changed (3) hide show
  1. package/README.md +20 -0
  2. package/dist/index.js +1743 -0
  3. package/package.json +35 -0
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@tour-kit/studio",
3
+ "version": "0.1.0",
4
+ "description": "User Tour Kit Studio CLI — detect framework, install packages, scaffold tours, AST-patch providers, verify and harden selectors.",
5
+ "type": "module",
6
+ "bin": {
7
+ "tourkit": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup",
14
+ "typecheck": "tsc --noEmit",
15
+ "test": "vitest run"
16
+ },
17
+ "dependencies": {
18
+ "citty": "0.2.2",
19
+ "consola": "3.4.2",
20
+ "execa": "9.6.1",
21
+ "pkg-types": "2.3.1",
22
+ "semver": "7.8.1",
23
+ "ts-morph": "28.0.0",
24
+ "zod": "4.4.3"
25
+ },
26
+ "optionalDependencies": {
27
+ "playwright": "1.60.0"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^24.0.0",
31
+ "@types/semver": "^7.7.1",
32
+ "@usetourkit/recipe": "workspace:*",
33
+ "tsup": "^8.5.1"
34
+ }
35
+ }