-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (50 loc) · 1.11 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "mem-sdk",
"version": "1.0.6",
"description": "JS SDK for MEM Serverless Functions",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.es.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.cjs.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
}
},
"scripts": {
"start": "vite watch",
"build": "vite build",
"localbuild": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentldotland/mem-sdk.git"
},
"keywords": [
"MEM",
"SDK",
"JS",
"TS"
],
"author": "charmful0x",
"license": "MIT",
"bugs": {
"url": "https://github.com/decentldotland/mem-sdk/issues"
},
"homepage": "https://github.com/decentldotland/mem-sdk#readme",
"dependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.3.1",
"tslib": "2.5.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0"
},
"files": [
"dist"
]
}