-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "megio-api",
"private": false,
"version": "1.1.0",
"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",
"format": "npx @biomejs/biome format --write",
"lint": "npx @biomejs/biome check"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@types/jest": "^30.0.0",
"@types/jest-json-schema": "^6.1.5",
"@types/node": "^24.9.2",
"jest": "^30.2.0",
"jest-json-schema": "^6.1.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}