-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "@delegatexyz/sdk",
"version": "0.6.0",
"description": "",
"main": "index.cjs",
"module": "index.esm.js",
"type": "module",
"scripts": {
"build": "npm run lint && rm -rf lib && rollup -c",
"mypublish": "npm run build && cp package.json lib && cp README.md lib && cp LICENSE lib",
"lint": "eslint . --ext .ts",
"test": "exit 0",
"format": "prettier --write \"src/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/delegatexyz/delegate-javascript-sdk.git"
},
"author": "delegatexyz",
"license": "MIT",
"bugs": {
"url": "https://github.com/delegatexyz/delegate-javascript-sdk/issues"
},
"homepage": "https://github.com/delegatexyz/delegate-javascript-sdk#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.24.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"prettier": "^2.7.1",
"rollup": "^3.21.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.2.2"
},
"dependencies": {
"viem": "^2.9.13"
}
}