-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.73 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "voltra",
"packageManager": "npm@10.8.2",
"version": "1.2.0",
"description": "Build Live Activities with JSX in React Native",
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./client": {
"types": "./build/client.d.ts",
"default": "./build/client.js"
},
"./server": {
"types": "./build/server.d.ts",
"default": "./build/server.js"
},
"./android": {
"types": "./build/android/index.d.ts",
"default": "./build/android/index.js"
},
"./android/server": {
"types": "./build/android/server.d.ts",
"default": "./build/android/server.js"
},
"./android/client": {
"types": "./build/android/client.d.ts",
"default": "./build/android/client.js"
},
"./app.plugin.js": "./app.plugin.js",
"./expo-module.config.json": "./expo-module.config.json"
},
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"clean:plugin": "rm -rf plugin/build plugin/tsconfig.tsbuildinfo",
"format:check": "npm run format:js:check && npm run format:kotlin:check && npm run format:swift:check",
"format:fix": "npm run format:js:fix && npm run format:kotlin:fix && npm run format:swift:fix",
"format:js:check": "prettier --check .",
"format:js:fix": "prettier --write .",
"format:kotlin:check": "ktlint \"android/**/*.kt\"",
"format:kotlin:fix": "ktlint -F \"android/**/*.kt\"",
"format:swift:check": "swiftformat --lint ios",
"format:swift:fix": "swiftformat ios",
"lint": "expo-module eslint",
"lint:libOnly": "expo-module eslint ./src",
"test": "expo-module test",
"test:js": "npm run test",
"test:kotlin": "cd example/android && ./gradlew :voltra:testDebugUnitTest",
"test:swift": "cd ios && swift test",
"test:native": "npm run test:kotlin && npm run test:swift",
"test:all": "npm run test:js && npm run test:native",
"prepare": "expo-module prepare && rm .eslintrc.js",
"postprepare": "echo '{\"type\": \"module\"}' > build/package.json",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"generate": "ts-node generator/generate-types.ts",
"harness:ios": "npm run harness:ios --prefix example",
"harness:android": "npm run harness:android --prefix example",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"keywords": [
"react-native",
"expo",
"live-activity",
"ios",
"apple"
],
"author": "Saúl Sharma (https://x.com/saul_sharma), Szymon Chmal (https://x.com/chmalszymon)",
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/voltra.git"
},
"bugs": {
"url": "https://github.com/callstackincubator/voltra/issues"
},
"license": "MIT",
"homepage": "https://use-voltra.dev",
"dependencies": {
"dedent": "^1.7.1",
"react-is": "^19.2.0",
"vd-tool": "^4.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/dedent": "^0.7.2",
"@types/node": "^20.19.25",
"@types/react": "~19.0.0",
"@types/react-is": "^19.2.0",
"ajv": "^8.12.0",
"eslint": "^9.33.0",
"eslint-config-expo": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"expo": "~53.0.0",
"expo-module-scripts": "^4.1.10",
"prettier": "2.8.8",
"react-native": "0.79.1",
"ts-node": "^10.9.0",
"turbo": "^2.8.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}