-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
56
57
58
59
60
61
{
"name": "@cloudcreate/core",
"version": "0.1.1",
"type": "module",
"description": "Core processing utilities shared by CloudCreate.ai web tools and future CLI entry points.",
"homepage": "https://cloudcreate.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudcreate-ai/cloudcreate-lib.git"
},
"bugs": {
"url": "https://github.com/cloudcreate-ai/cloudcreate-lib/issues"
},
"license": "MIT",
"author": "CloudCreate.ai contributors",
"keywords": [
"cloudcreate",
"image",
"archive",
"css",
"markdown",
"table",
"browser-tools"
],
"main": "./src/index.js",
"sideEffects": false,
"files": [
"src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./src/index.js",
"./archive": "./src/archive.js",
"./browser": "./src/browser.js",
"./css": "./src/css.js",
"./image": "./src/image.js",
"./markdown": "./src/markdown.js",
"./table": "./src/table.js"
},
"dependencies": {
"@jsquash/avif": "^1.1.2-single-thread-only",
"@jsquash/jpeg": "^1.6.0",
"@jsquash/png": "^3.1.1",
"@jsquash/webp": "^1.5.0",
"brotli-wasm": "^3.0.1",
"csso": "^5.0.5",
"fflate": "^0.8.2",
"js-beautify": "^1.15.4",
"marked": "^15.0.12",
"pngjs": "^7.0.0",
"upng-js": "^2.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
}
}