@kinetiq-research/asset-metadata 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +11 -10
package/package.json CHANGED
@@ -1,23 +1,24 @@
1
1
  {
2
2
  "name": "@kinetiq-research/asset-metadata",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "description": "Asset metadata (descriptions, oracle references) for Kinetiq markets",
5
- "type": "module",
6
5
  "sideEffects": false,
6
+ "type": "module",
7
7
  "exports": {
8
8
  "./get-asset-metadata": "./src/get-asset-metadata.ts"
9
9
  },
10
- "publishConfig": {
11
- "access": "public"
12
- },
13
10
  "scripts": {
14
- "format": "oxfmt .",
15
- "lint": "concurrently \"pnpm format\" \"pnpm lint:oxlint\" \"pnpm type-check\"",
16
- "lint:oxlint": "oxlint --format unix --fix-dangerously .",
17
- "type-check": "tsc -b",
18
- "type-check:watch": "pnpm type-check -w --preserveWatchOutput"
11
+ "lint": "run-p lint:*",
12
+ "lint:code": "oxlint --format unix --fix-dangerously .",
13
+ "lint:format": "oxfmt .",
14
+ "lint:types": "tsc -b",
15
+ "lint:types:clean": "tsc -b --clean",
16
+ "lint:types:watch": "pnpm lint:types -w --preserveWatchOutput"
19
17
  },
20
18
  "devDependencies": {
21
19
  "@kinetiq-research/tsconfig": "workspace:*"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
22
23
  }
23
24
  }