-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
64
65
66
{
"name": "@chronicleprotocol/api-auth",
"version": "0.3.6",
"description": "The API authenticaion library for Chronicle Protocol",
"type": "module",
"main": "lib/index.js",
"bin": {
"signAuthToken": "bin/signAuthToken.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf lib",
"format": "prettier --write .",
"lint": "npx eslint src",
"lint:fix": "npx eslint --fix src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"test": "vitest run --config vitest.config.ts",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chronicleprotocol/api-auth-npm.git"
},
"keywords": [
"chronicle",
"chronicle api",
"chronicle labs",
"chronicle labs api",
"chronicle protocol",
"chronicle protocol api"
],
"author": "Brian Belhumeur",
"license": "MIT",
"bugs": {
"url": "https://github.com/chronicleprotocol/api-auth-npm/issues"
},
"homepage": "https://github.com/chronicleprotocol/api-auth-npm#readme",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.20.1",
"prettier": "3.5.0",
"prettier-plugin-organize-imports": "^4.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^3.0.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"viem": "^2.23.2"
},
"moduleResolution": "nodeNext"
}