-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "meta-scan",
"version": "0.15.0",
"description": "A lightweight, client-side JavaScript tool for extracting and visualizing webpage metadata",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/auto.global.js",
"scripts": {
"dev": "npm-run-all --parallel dev:css dev:tsup serve",
"dev:css": "postcss ./src/ui/styles.css -o ./src/ui/styles.processed.css --watch",
"dev:tsup": "NODE_ENV=development tsup --watch",
"build": "npm run build:css && NODE_ENV=production tsup",
"build:css": "postcss ./src/ui/styles.css -o ./src/ui/styles.processed.css",
"test": "echo \"No tests yet\"",
"serve": "serve",
"canary": "pnpm run build && npx auto canary --force"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"metadata",
"seo",
"opengraph",
"extraction",
"visualization"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@auto-it/all-contributors": "^11.3.0",
"@auto-it/conventional-commits": "^11.3.0",
"@auto-it/npm": "^11.3.0",
"@auto-it/omit-commits": "^11.3.0",
"@auto-it/omit-release-notes": "^11.3.0",
"@auto-it/released": "^11.3.0",
"auto": "^11.3.0",
"autoprefixer": "^10.4.16",
"clsx": "^2.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.3.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"preact": "^10.19.2",
"serve": "^14.2.4"
}
}