-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.43 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@seatlayer/react-native",
"version": "0.2.1",
"description": "Official React Native SDK for interactive SeatLayer reserved-seating maps on iOS and Android.",
"license": "MIT",
"homepage": "https://docs.seatlayer.io/buyer-sdk/mobile/",
"repository": {
"type": "git",
"url": "git+https://github.com/seatlayer/seatlayer-react-native.git"
},
"bugs": {
"url": "https://github.com/seatlayer/seatlayer-react-native/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"react-native": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"picker:design": "node scripts/generate-picker-design.mjs --tokens design/tokens.json --strings design/locale_strings.json --out-dir src/picker",
"picker:design:check": "node scripts/generate-picker-design.mjs --tokens design/tokens.json --strings design/locale_strings.json --out-dir src/picker --check",
"check:public-hygiene": "node scripts/check-public-hygiene.mjs",
"check:source-size": "node scripts/check-source-size.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint:package": "publint && attw --pack .",
"validate": "pnpm picker:design:check && pnpm check:public-hygiene && pnpm check:source-size && pnpm typecheck && pnpm test && pnpm build && pnpm lint:package",
"prepublishOnly": "pnpm validate"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-native": ">=0.72.0",
"react-native-webview": ">=13.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@types/react": "19.2.17",
"@types/react-test-renderer": "19.1.0",
"publint": "0.3.21",
"react": "19.2.8",
"react-native": "0.86.0",
"react-native-webview": "14.0.1",
"react-test-renderer": "19.2.8",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.1.10"
},
"keywords": [
"react-native",
"expo",
"ios",
"android",
"seat-map",
"reserved-seating",
"ticketing",
"seatlayer"
],
"engines": {
"node": ">=20.19.4"
},
"packageManager": "pnpm@11.10.0"
}