-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.43 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@avnu/avnu-sdk",
"version": "2.1.1",
"description": "TypeScript SDK for building exchange functionality on Layers 2 with the AVNU API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"jsdelivr": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "AVNU",
"keywords": [
"starknet",
"l2",
"exchange",
"swap"
],
"homepage": "https://github.com/avnu-labs/avnu-sdk#readme",
"repository": "https://github.com/avnu-labs/avnu-sdk.git",
"bugs": {
"url": "https://github.com/avnu-labs/avnu-sdk/issues/new?template=bug_report.yml&title=[bug]+<replace+this+with+a+title>"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup && yarn build:esm && yarn build:iife && yarn build:dts",
"build:esm": "tsup --clean false --format esm --platform node",
"build:iife": "tsup --clean false --format iife --platform browser",
"build:dts": "tsup --clean false --dts-only",
"test": "jest -i",
"test:watch": "jest --watch",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx,json}' --quiet",
"lint:fix": "tsc --noEmit && prettier --write \"src/**/*.{ts,tsx,js,json,css,yml,md}\" && eslint 'src/**/*.{js,ts,tsx,json}' --quiet --fix",
"size": "size-limit",
"analyze": "size-limit --why"
},
"size-limit": [
{
"path": "dist/index.cjs.production.min.js",
"limit": "300 KB"
},
{
"path": "dist/index.esm.js",
"limit": "250 KB"
}
],
"peerDependencies": {
"ethers": "^6.11.1",
"qs": "^6.12.0",
"starknet": "^6.6.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.24.1",
"@babel/preset-env": "7.24.4",
"@babel/preset-typescript": "7.24.7",
"@size-limit/preset-small-lib": "11.1.2",
"@types/jest": "29.5.12",
"@types/qs": "6.9.14",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.1.0",
"ethers": "6.13.1",
"fetch-mock": "9.11.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"qs": "6.12.1",
"size-limit": "11.1.2",
"starknet": "6.6.0",
"tsup": "8.0.2",
"typedoc": "0.25.13",
"typescript": "5.4.5"
}
}