-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 KB
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
{
"name": "liquid-glass-react",
"version": "1.1.1",
"description": "Apple's Liquid Glass effect for React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"workspaces": ["liquid-glass"],
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "esbuild src/index.tsx --bundle --format=esm --outfile=dist/index.esm.js --external:react --external:react-dom",
"build:cjs": "esbuild src/index.tsx --bundle --format=cjs --outfile=dist/index.js --external:react --external:react-dom",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rm -rf dist",
"dev": "npm run build:esm -- --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"esbuild": "^0.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.0"
},
"keywords": ["react", "component", "library", "typescript"],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
}
}