-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "img-finder",
"version": "0.1.5",
"type": "module",
"license": "MIT",
"bin": {
"image-finder": "./dist/cli/index.cjs"
},
"bugs": "https://github.com/akshitkrnagpal/img-finder/issues",
"files": [
"README.md",
"LICENSE",
"bin",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/akshitkrnagpal/img-finder.git"
},
"scripts": {
"build": "yarn web:build && yarn cli:build",
"cli:dev": "tsup --watch --onSuccess 'node dist/cli/index.cjs'",
"cli:build": "tsup",
"cli:start": "yarn cli:build && node dist/cli/index.cjs",
"web:dev": "vite",
"web:build": "tsc && vite build",
"web:preview": "vite preview"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@fastify/cors": "^8.2.1",
"@fastify/static": "^6.10.0",
"@preact/preset-vite": "^2.5.0",
"@root/walk": "^1.1.0",
"@types/node": "^18.15.11",
"arg": "^5.0.2",
"autoprefixer": "^10.4.14",
"fastify": "^4.15.0",
"is-image": "^3.1.0",
"node-fetch": "^3.3.1",
"open": "^8.4.2",
"postcss": "^8.4.21",
"preact": "^10.13.2",
"swr": "^2.1.3",
"tailwindcss": "^3.3.1",
"tsup": "^6.7.0",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}