-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1018 Bytes
/
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
{
"name": "liquid-image",
"repository": {
"type": "git",
"url": "https://github.com/zarifpour/liquid-image.git"
},
"version": "0.1.0-alpha.7",
"private": false,
"files": ["dist", "src/components", "src/utils", "src/index.tsx", "README.md"],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"scripts": {
"build": "tsup src/index.tsx --format cjs,esm --dts --external react react-dom --treeshake --clean",
"check": "bunx @biomejs/biome check --write ./src",
"dev": "next dev --turbopack",
"dev:build": "next build",
"format": "bunx @biomejs/biome format --write ./src",
"lint": "bunx @biomejs/biome lint --write ./src",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"lefthook": "^1.11.0",
"tsup": "^8.0.0",
"typescript": "^5"
}
}