forked from acmilowka/siena
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "siena",
"version": "0.3.0",
"description": "Optimize markdown images in Astro",
"main": "index.js",
"types": "index.d.ts",
"module": "index.js",
"type": "module",
"files": [
"**/*"
],
"scripts": {
"build": "shx rm -rf ./dist/* && tsc && shx cp ./package.json ./dist && shx cp ./README.md ./dist",
"release": "pnpm build && cd dist && pnpm publish --no-git-checks --access public && cd ../",
"test": "pnpm exec ts-node --esm -T test/index.ts"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/pilcrowOnPaper/siena",
"directory": "/"
},
"author": "pilcrowonpaper",
"license": "MIT",
"exports": {
".": "./index.js"
},
"typesVersions": {
"*": {}
},
"dependencies": {
"image-size": "^1.0.2",
"sharp": "^0.31.3"
},
"devDependencies": {
"@types/hast": "^2.3.4",
"@types/html-escaper": "^3.0.0",
"@types/node": "^18.13.0",
"@types/sharp": "^0.31.1",
"prettier": "^2.8.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vfile": "^5.3.7"
}
}