-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "@everipedia/iq-utils",
"version": "2.0.5",
"description": "Common utility library for IQ projects",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"repository": "https://github.com/EveripediaNetwork/iq-utils",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"release": "pnpm run build && changeset publish",
"lint": "lint-staged",
"format": "biome format . --write",
"lint:fix": "pnpm lint --apply",
"watch:build": "tsc -p tsconfig.json -w"
},
"dependencies": {
"axios": "^1.7.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@changesets/cli": "^2.24.0",
"@types/node": "^22.7.4",
"changeset": "^0.2.6",
"lint-staged": "^15.2.10",
"tsup": "^8.3.0",
"typescript": "^4.7.4"
},
"files": [
"dist",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=10",
"pnpm": ">=6"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,mjs,jsx,ts,tsx,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}