-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "@algonameservice/sdk",
"version": "0.4.0",
"description": "JavaScript SDK to resolve ANS .algo names",
"main": "dist/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm",
"type": "module",
"author": "Algorand Name Service",
"license": "MIT",
"keywords": [
"algorand",
"algorand name service",
"blockchain",
"ans",
"algosdk"
],
"dependencies": {
"@types/node": "^17.0.21",
"algosdk": "^1.13.1",
"typescript": "^4.6.4"
},
"scripts": {
"test": "mocha --trace-warnings 'test/test.ts'",
"build": "rimraf dist && tsup && tsc",
"clean": "rimraf dist",
"lint": "eslint --fix src --ext .ts",
"format": "prettier -w ."
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chai": "^4.3.6",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^9.2.1",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"tsup": "^5.12.6"
}
}