-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "maplerad-sdk",
"type": "module",
"version": "0.1.1",
"private": false,
"description": "NodeJs SDK for Maplerad API.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"homepage": "https://maplerad.toneflix.net/",
"repository": {
"url": "https://github.com/toneflix/maplerad-sdk.git",
"type": "git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"test": "pnpm vitest --run",
"test:watch": "pnpm vitest",
"build": "tsdown",
"lint": "eslint . --ext .ts",
"coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@h3ravel/shared": "^0.27.13",
"@oapiex/sdk-kit": "^0.1.13"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.1",
"@faker-js/faker": "^10.4.0",
"@types/node": "^20.14.5",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^10.2.0",
"tsdown": "^0.20.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.58.0",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
}
}