-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1000 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
{
"name": "@walnuthq/sdk",
"version": "1.1.11",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"jsdelivr": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"browser": "./dist/index.global.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && npm run build:esm && npm run build:iife && npm run build:dts",
"build:esm": "tsup --clean false --format esm --platform browser",
"build:iife": "tsup --clean false --format iife --platform browser",
"build:dts": "tsup --clean false --dts-only"
},
"publishConfig": {
"access": "public"
},
"author": "walnut.dev",
"license": "UNLICENSED",
"keywords": [],
"devDependencies": {
"@types/node": "^20.10.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@sentry/browser": "^7.91.0",
"starknet": "^5.24.3"
}
}