-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.36 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
83
84
85
86
87
88
{
"name": "@thencc/algonautjs",
"version": "0.3.70",
"description": "AlgonautJS is a simplified Algorand transaction library built specifically for Browsers and Front End Development",
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"browser": "dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs"
},
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"scripts": {
"link": "pnpm link --global",
"unlink": "pnpm -g rm @thencc/algonautjs",
"link:aw": "pnpm link @thencc/any-wallet --global",
"link:ic": "pnpm link @thencc/inkey-client-js --global",
"build": "rm -rf dist && run-s build:*",
"build:esm-cjs": "tsup --config=tsup.config.ts",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"build:docs": "npx typedoc",
"test": "jest",
"tests": "cd tests && task prepare-tests && task tests",
"lint:eslint": "eslint 'src/**/*.ts'"
},
"keywords": [
"algo",
"algorand",
"algonaut",
"algosdk",
"javascript",
"js",
"typescript",
"ts",
"frontend"
],
"author": "Aubrey Anderson, Delwin Campbell, NCC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/thencc/algonautjs"
},
"packageManager": "^[email protected]",
"dependencies": {
"@thencc/any-wallet": "^0.2.5",
"algosdk": "github:thencc/js-algorand-sdk-no-fetch-poly#1a963de38b4d29b9a4d06bf829c428fc0aa61ce7",
"buffer": "^6.0.3"
},
"optionalDependencies": {
"@blockshake/defly-connect": "^1.1.5",
"@perawallet/connect": "^1.2.3",
"@randlabs/myalgo-connect": "^1.4.2",
"@thencc/inkey-client-js": "^0.0.30"
},
"devDependencies": {
"@blockshake/defly-connect": "^1.1.2",
"@jest/globals": "^29.5.0",
"@perawallet/connect": "^1.2.0",
"@randlabs/myalgo-connect": "^1.4.2",
"@thencc/inkey-client-js": "^0.0.30",
"@thencc/inkey-types": "^0.0.12",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^29.5.0",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.5",
"vite": "^4.3.9"
}
}