-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 914 Bytes
/
package.json
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
{
"name": "@cozy-creator/ts-client",
"version": "0.6.0",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema.d.ts",
"default": "./dist/schema.js"
}
},
"typesVersions": {
"*": {
"schema": [
"./dist/schema.d.ts"
]
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf dist",
"prepack": "yarn build"
},
"devDependencies": {
"@types/node": "^22.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"form-data": "^4.0.1",
"msgpackr": "^1.11.2",
"zod": "^3.23.8"
}
}