@primuslabs/fund-js-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@primuslabs/fund-js-sdk",
3
+ "version": "0.1.0",
4
+ "author": "Primus Labs <dev@primuslabs.org>",
5
+ "description": "Primus fund js sdk",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/primus-labs/fund-js-sdk.git"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "files": [
13
+ "./dist"
14
+ ],
15
+ "exports": {
16
+ "import": "./dist/index.mjs",
17
+ "require": "./dist/index.cjs"
18
+ },
19
+ "scripts": {
20
+ "build:test": "rm -rf dist && tsc --build tsconfig.json",
21
+ "lint": "eslint -c .eslintrc --ext .ts src",
22
+ "format": "prettier --check --write src/**/*.ts --config .prettierrc",
23
+ "pretest:integration": "npm run build && npm link",
24
+ "publish": "npm publish --access public",
25
+ "test": "jest",
26
+ "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
27
+ "build": "rm -rf dist && tsup src/index.ts --format esm,cjs --dts"
28
+ },
29
+ "devDependencies": {
30
+ "@types/jest": "^29.5.12",
31
+ "@types/node": "^20.12.7",
32
+ "@typescript-eslint/eslint-plugin": "^7.7.0",
33
+ "@typescript-eslint/parser": "^7.7.0",
34
+ "eslint": "^8.56.0",
35
+ "eslint-plugin-import": "^2.29.1",
36
+ "eslint-plugin-prefer-arrow": "^1.2.3",
37
+ "jest": "^29.7.0",
38
+ "prettier": "^3.2.5",
39
+ "prettier-package-json": "^2.8.0",
40
+ "ts-jest": "^29.1.4",
41
+ "ts-node": "^10.9.2",
42
+ "tslib": "^2.6.2",
43
+ "typescript": "^5.4.5",
44
+ "tsup": "^8.4.0"
45
+ },
46
+ "jest": {
47
+ "transform": {
48
+ "^.+\\.(ts|tsx)$": "ts-jest"
49
+ },
50
+ "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js)$",
51
+ "moduleFileExtensions": [
52
+ "ts",
53
+ "tsx",
54
+ "js"
55
+ ]
56
+ },
57
+ "dependencies": {
58
+ "@primuslabs/zktls-js-sdk": "^0.2.10",
59
+ "axios": "^1.8.1",
60
+ "ethers": "^5.7.2"
61
+ }
62
+ }