-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@stabilitydao/stability",
"version": "0.21.3",
"description": "Stability Integration Library",
"main": "out/index.js",
"types": "out/index.d.ts",
"files": [
"out",
"LICENSE",
"README.md",
"package.json"
],
"repository": "https://github.com/stabilitydao/stability.git",
"author": "stabilitydao",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --collect-coverage",
"overview": "ts-node tools/overview.ts",
"overview-full": "ts-node tools/overview-full.ts",
"postbuild": "shx cp src/*.tokenlist.json out/",
"draw-chains": "ts-node tools/draw-chains.ts",
"draw-integrations": "ts-node tools/draw-integrations.ts",
"issue": "ts-node tools/issue.ts",
"contests-maker": "ts-node tools/contests-maker.ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"ansis": "^3.2.0",
"axios": "^1.7.7",
"canvas": "^2.11.2",
"console-table-printer": "^2.12.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"shx": "^0.3.4",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}