-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 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
{
"name": "@azuro-org/toolkit",
"version": "6.1.1",
"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",
"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": "^5.0.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": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"builtin-modules": "^3.3.0",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"minimist": "^1.2.8",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}