-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 916 Bytes
/
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
{
"name": "linear",
"version": "1.0.0",
"description": "NEAR Liquid Staking",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/linear-protocol/LiNEAR.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"near-api-js": "^0.44.2",
"near-units": "^0.1.9",
"prompts": "^2.4.2",
"ts-node": "^10.9.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"@types/bn.js": "^5.1.5",
"ava": "^6.1.2",
"near-workspaces": "^3.5.0",
"typescript": "^4.5.5",
"prettier": "^3.0.1"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80
},
"engines": {
"node": ">=20"
}
}