@arrirpc/codegen-swift 0.60.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +9 -0
- package/README.md +154 -0
- package/dist/index.cjs +1536 -0
- package/dist/index.d.cts +42 -0
- package/dist/index.d.mts +42 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.mjs +1528 -0
- package/package.json +28 -0
package/package.json
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"name": "@arrirpc/codegen-swift",
|
3
|
+
"version": "0.60.0",
|
4
|
+
"type": "module",
|
5
|
+
"license": "MIT",
|
6
|
+
"author": {
|
7
|
+
"name": "joshmossas",
|
8
|
+
"url": "https://github.com/joshmossas"
|
9
|
+
},
|
10
|
+
"bugs": {
|
11
|
+
"url": "https://github.com/modiimedia/arri/issues"
|
12
|
+
},
|
13
|
+
"repository": {
|
14
|
+
"type": "git",
|
15
|
+
"url": "https://github.com/modiimedia/arri.git",
|
16
|
+
"directory": "languages/swift/swift-codegen"
|
17
|
+
},
|
18
|
+
"main": "./dist/index.cjs",
|
19
|
+
"module": "./dist/index.mjs",
|
20
|
+
"types": "./dist/index.d.ts",
|
21
|
+
"files": [
|
22
|
+
"dist"
|
23
|
+
],
|
24
|
+
"dependencies": {
|
25
|
+
"@arrirpc/codegen-utils": "0.60.0"
|
26
|
+
},
|
27
|
+
"devDependencies": {}
|
28
|
+
}
|