-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 KB
/
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
{
"name": "megio-api",
"private": false,
"version": "0.11.1",
"type": "module",
"main": "./dist/megio-api.umd.cjs",
"module": "./dist/megio-api.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/megio-api.js",
"require": "./dist/megio-api.cjs"
},
"./types": "./dist/types/index.d.ts",
"./types/auth": "./dist/auth/types/index.d.ts",
"./types/collections": "./dist/collections/types/index.d.ts",
"./types/resources": "./dist/resources/types/index.d.ts"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"prepublish": "tsc && vite build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jest-json-schema": "^6.1.4",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"jest-json-schema": "^6.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.0"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}