-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 959 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
{
"name": "@stakeordie/griptape.js",
"version": "0.9.17",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"author": "Stake Or Die!",
"license": "MIT",
"scripts": {
"build": "tsc --skipLibCheck",
"release-build": "npx prettier --write . && tsc --skipLibCheck",
"dev": "tsc -w --skipLibCheck",
"test": "jest",
"prettier": "npx prettier --write ."
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@keplr-wallet/types": "0.9.10",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.2.4",
"prettier": "2.3.2",
"typescript": "^4.3.2"
},
"dependencies": {
"decimal.js": "10.2.1",
"secretjs": "0.17.7"
}
}