-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "warp-contracts-sqlite",
"version": "1.0.3-beta.1",
"description": "Sqlite contract cache for Warp SDK",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
"exports": {
".": "./lib/cjs/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=16.5"
},
"scripts": {
"build:cjs": "tsc -b tsconfig.json",
"build:types": "tsc -b tsconfig.types.json",
"build": "yarn run clean && yarn build:cjs && yarn build:types",
"format": "prettier --write 'src/**/*.ts'",
"clean": "rimraf ./lib",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint && yarn build",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"yalc:publish": "yarn build && yalc publish --push",
"test": "jest"
},
"license": "MIT",
"author": "Redstone Team <dev@redstone.finance>",
"files": [
"lib/",
"LICENSE",
"README.md"
],
"dependencies": {
"better-sqlite3": "^8.3.0",
"safe-stable-stringify": "^2.4.3"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"cli-progress": "^3.11.2",
"command-line-args": "^5.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"fast-folder-size": "^1.7.1",
"jest": "^29.3.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"warp-contracts": "^1.4.7"
}
}