-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "@rmrk-team/rmrk-evm-utils",
"description": "Typescript utilities and actions for working with NFTs built on RMRK standards",
"bugs": "https://github.com/rmrk-team/rmrk-js/issues",
"homepage": "https://github.com/rmrk-team/rmrk-js",
"version": "0.2.2",
"private": false,
"access": "public",
"repository": {
"type": "git",
"url": "https://github.com/rmrk-team/rmrk-js.git",
"directory": "packages/rmrk-evm-utils"
},
"scripts": {
"build": "pnpm run clean && pnpm run build:esm+types",
"build:esm+types": "tsc -b tsconfig.build.json --declaration --declarationMap",
"dev": "pnpm run build:esm+types --watch",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"test:build": "publint --strict",
"typecheck": "tsc --noEmit"
},
"files": [
"dist/**",
"!dist/**/*.tsbuildinfo",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts"
],
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "18.16.9",
"abitype": "^1.0.6",
"dotenv": "^16.3.2",
"install": "^0.13.0",
"pnpm": "^8.14.1",
"ts-node": "10.9.1",
"typescript": "^5.5.4",
"viem": "^2.19.7",
"wagmi": "^2.12.5",
"zod": "^3.22.4"
},
"peerDependencies": {
"typescript": ">=5.4.2",
"abitype": ">=1.0.6",
"viem": ">=2.19.7",
"wagmi": ">=2.12.5"
},
"license": "MIT",
"authors": ["yurinondual.eth <[email protected]>"]
}