-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.19 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.19 KB
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
67
68
69
70
{
"name": "@azuro-org/toolkit",
"version": "5.1.9",
"description": "This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"gql:cleanup": "rimraf src/docs/**/*.ts src/docs/**/**/*.ts",
"gql": "npm run gql:cleanup & graphql-codegen",
"dev": "rollup -cw",
"build": "rimraf ./dist && npm run gql && tsc --emitDeclarationOnly && rollup -c --compact",
"prepublishOnly": "npm run build",
"------------------ Lint --------------------------------------------------------------------------------": "",
"lint": "next lint && tsc --noEmit",
"lint-fix": "eslint ./src -c .eslintrc --fix --ext js,ts,tsx",
"lint-ts": "tsc --noEmit"
},
"keywords": [
"azuro",
"azuro-protocol",
"toolkit",
"helpers",
"framework agnostic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Azuro-protocol/toolkit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Azuro-protocol/toolkit/issues"
},
"homepage": "https://github.com/Azuro-protocol/toolkit#readme",
"peerDependencies": {
"@azuro-org/dictionaries": "^3.0.28",
"@wagmi/core": "^2.20.3",
"graphql-tag": "^2.12.6",
"viem": "^2.37.4"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/near-operation-file-preset": "^2.5.0",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-document-nodes": "^4.0.12",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@rollup/plugin-commonjs": "^23.0.7",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"builtin-modules": "^3.3.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"minimist": "^1.2.7",
"rimraf": "^3.0.2",
"rollup": "^2.79.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.4.1",
"typescript": "^5.8.3"
}
}