-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "@rmrk-team/ipfs-utils",
"description": "IPFS utils for RMRK NFTs",
"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/ipfs-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 actions chains connectors query",
"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",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@rmrk-team/types": "workspace:*",
"is-ipfs": "6.0.2"
},
"peerDependencies": {
"typescript": ">=5.4.2"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1"
},
"license": "MIT",
"authors": ["yurinondual.eth <yuripetusko@gmail.com>"]
}