-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sdk-example",
"private": true,
"version": "0.1.0",
"description": "Community-built interactive reference app for the @apps-in-toss/web-framework SDK.",
"author": "apps-in-toss-community",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"dev:phone": "AIT_TUNNEL=1 vite",
"dev:phone:cdp": "AIT_TUNNEL=1 AIT_TUNNEL_CDP=1 vite",
"build": "tsx scripts/build-og-images.tsx && tsc -b && vite build && tsx scripts/build-route-html.ts && tsx scripts/build-sitemap.ts",
"build:og": "tsx scripts/build-og-images.tsx",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:install": "playwright install chromium",
"test:env3": "debugger-test 'src/**/*.ait.test.ts' --scheme-url \"$AIT_SCHEME_URL\" --cell-sdk-line \"${AIT_CELL_SDK_LINE:-2.x}\" --cell-platform \"${AIT_CELL_PLATFORM:-ios}\" --report-dir \"${AIT_REPORT_DIR:-.ait-run}\"",
"test:env3:matrix": "AIT_CELL_SDK_LINE=2.x AIT_CELL_PLATFORM=ios pnpm test:env3 && AIT_CELL_SDK_LINE=2.x AIT_CELL_PLATFORM=android pnpm test:env3 && AIT_CELL_SDK_LINE=3.x AIT_CELL_PLATFORM=ios pnpm test:env3 && AIT_CELL_SDK_LINE=3.x AIT_CELL_PLATFORM=android pnpm test:env3",
"test:env3:vitest": "vitest run -c vitest.env3.config.ts",
"bundle:ait": "ait build",
"bundle:ait:dogfood": "AIT_DEBUG_BUILD=1 RELEASE_CHANNEL=dogfood ait build",
"scaffold:domain": "node scripts/scaffold-domain.ts",
"sync:readme": "tsx scripts/sync-readme-domains.ts",
"sync:readme:check": "tsx scripts/sync-readme-domains.ts --check",
"diff:captures": "tsx scripts/diff-ait-captures.ts"
},
"dependencies": {
"@ait-co/debug-console": "^0.1.3",
"@ait-co/polyfill": "^0.1.18",
"@apps-in-toss/web-framework": "2.10.0",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.0"
},
"devDependencies": {
"@ait-co/debugger": "^0.1.3",
"@ait-co/devtools": "^0.2.0",
"@apps-in-toss/cli": "2.10.0",
"@biomejs/biome": "2.5.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"jsdom": "^29.1.1",
"satori": "^0.26.0",
"sharp": "^0.35.2",
"tailwindcss": "^4.3.1",
"tsx": "^4.22.4",
"typescript": "~6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9"
}
}