-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
{
"name": "@compolabs/swayland-ts-sdk",
"version": "0.0.1",
"type": "module",
"main": "./dist/index.сjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/compolabs/swayland-ts-sdk.git"
},
"keywords": [
"swayland",
"fuel",
"sdk"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/compolabs/swayland-ts-sdk/issues"
},
"homepage": "https://github.com/compolabs/swayland-ts-sdk#readme",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && npm run copy-dts",
"lint": "eslint --ext .tsx,.ts . --fix",
"test": "jest",
"test-watch": "jest --watch",
"prepare": "husky",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist"
},
"peerDependencies": {
"fuels": ">=0.82.0"
},
"dependencies": {
"@pythnetwork/pyth-evm-js": "^1.46.0",
"bignumber.js": "^9.1.2",
"tsdef": "^0.0.14"
},
"devDependencies": {
"@fuels/ts-config": "^0.18.1",
"@fuels/tsup-config": "^0.18.1",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"fuels": "pr-2375",
"husky": "^9.0.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
}
}