-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "@rmrk-team/types",
"bugs": "https://github.com/rmrk-team/rmrk-js/issues",
"homepage": "https://github.com/rmrk-team/rmrk-js",
"description": "Types to be used in combination with other packages of the RMRK EVM monorepo",
"version": "0.1.3",
"private": false,
"access": "public",
"repository": {
"type": "git",
"url": "https://github.com/rmrk-team/rmrk-js.git",
"directory": "packages/types"
},
"scripts": {
"typecheck": "tsc --noEmit",
"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"
},
"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"
},
"peerDependencies": {
"typescript": ">=5.4.5"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1"
},
"license": "MIT",
"authors": ["yurinondual.eth <[email protected]>"]
}