-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"private": false,
"name": "@maddsua/ssg-assets",
"version": "4.0.3",
"type": "module",
"engines": {
"node": ">=16.4.0"
},
"bin": {
"ssgassets": "./bin/main.js",
"ssga": "./bin/main.js"
},
"main": "./index.ts",
"types": "./index.ts",
"exports": {
".": {
"import": "./index.ts",
"types": "./index.ts"
},
"./components": {
"import": "./components/index.ts",
"types": "./components/index.ts"
},
"./react": {
"import": "./components/react/index.ts",
"types": "./components/react/index.ts"
},
"./astro": {
"import": "./components/astro/index.ts",
"types": "./components/astro/index.ts"
},
"./vue": {
"import": "./components/vue/index.ts",
"types": "./components/vue/index.ts"
},
"./html": {
"import": "./components/html/index.ts",
"types": "./components/html/index.ts"
},
"./dom": {
"import": "./components/dom/index.ts",
"types": "./components/dom/index.ts"
},
"./svelte": {
"import": "./components/svelte/index.ts",
"types": "./components/svelte/index.ts"
}
},
"files": [
"bin",
"index.ts",
"*.d.ts",
"components/index.ts",
"components/astro",
"components/react",
"components/vue",
"components/html",
"components/dom",
"components/svelte",
"cli/config.ts",
"cli/formats.ts",
"package.json"
],
"scripts": {
"typecheck": "tsc",
"bundle": "esbuild cli/main.ts --outfile=bin/main.js --bundle --platform=node --format=esm --external:sharp --external:chalk --external:minimatch --external:esbuild",
"build": "run-s typecheck bundle",
"dev": "esbuild cli/main.ts --outfile=bin/main.js --bundle --platform=node --format=esm --external:sharp --external:chalk --external:minimatch --external:esbuild --watch",
"test:cli": "run-s bundle test:cli:run",
"test:cli:run": "node bin/main.js --configFile=./tests/convert/ssgassets.config.json"
},
"dependencies": {
"chalk": "^5.3.0",
"esbuild": "^0.23.1",
"minimatch": "^9.0.3",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/node": "^18.16.17",
"astro": "^2.10.15",
"npm-run-all": "^4.1.5",
"preact": "^10.15.1",
"svelte": "^4.2.0",
"typescript": "^5.6.2",
"vue": "^3.3.4",
"vue-tsc": "^1.8.11"
},
"description": "Converts media assets for your static website and provides handy components fro React, Astro and Vue",
"keywords": [
"build",
"assets",
"component",
"image",
"astro",
"vue",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maddsua/ssg-assets.git"
}
}