-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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": "@graz-sh/types",
"description": "Cosmos, Keplr, and Graz related type definitions",
"version": "0.0.14",
"author": "Griko Nibras <[email protected]>",
"repository": "https://github.com/graz-sh/types.git",
"homepage": "https://github.com/graz-sh/types",
"bugs": "https://github.com/graz-sh/types/issues",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"convert.js",
"convert.d.ts",
"define.js",
"define.d.ts",
"keplr.js",
"keplr.d.ts",
"zod.js",
"zod.d.ts"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
"postpublish": "git reset HEAD --hard",
"prepack": "node scripts/prepack.js",
"prepublishOnly": "pnpm run build",
"test": "pnpm run /^test:.*/",
"test:types": "tsc src/test/*.test.ts --noEmit"
},
"peerDependencies": {
"long": "*",
"zod": "*"
},
"peerDependenciesMeta": {
"long": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@graz-sh/style-guide-core": "^4.1.0",
"@types/node": "^20.10.4",
"eslint": "^8.55.0",
"globby": "^14.0.0",
"prettier": "^3.1.1",
"tsup": "^8.0.1"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"prettier": "@graz-sh/style-guide-core/prettier",
"license": "MIT"
}