forked from AnimeSwap/airdrop
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 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
44
45
{
"name": "animeswap-airdrop",
"version": "0.0.1",
"description": "",
"repository": "",
"license": "GPL-3.0-or-later",
"keywords": [
"defi",
"swap",
"aptos"
],
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/tsc/main.js",
"types": "./dist/tsc/main.d.ts",
"scripts": {
"run": "ts-node src/index.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"jest": "29.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
},
"dependencies": {
"aptos": "^1.3.16",
"axios": "^1.0.0",
"decimal.js": "^10.4.1"
}
}