-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
{
"name": "astro-webmanifest",
"version": "1.0.0",
"description": "Generate a webmanifest and icons for Astro to make progressive web apps",
"keywords": [
"astro-integration",
"astro",
"astro-component",
"favicon",
"icon",
"icons",
"manifest",
"webmanifest",
"manifest.webmanifest",
"progressive-web-app",
"pwa"
],
"author": {
"name": "Oleksii Tymoshenko"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alextim/astro-lib.git",
"directory": "packages/astro-webmanifest"
},
"homepage": "https://github.com/alextim/astro-lib/tree/main/packages/astro-webmanifest#readme",
"bugs": "https://github.com/alextim/astro-lib/issues",
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/constants.ts"
],
"scripts": {
"build": "at-scripts create-pkg-name && at-scripts build && tsc -p tsconfig.build.json && at-scripts copy index.d.ts && at-scripts copy-s constants.ts",
"typecheck": "tsc --noEmit --pretty",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test:pub": "pnpm publish --dry-run --no-git-checks"
},
"dependencies": {
"sharp": "^0.32.5",
"valid-filename": "^4.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/node": "^20.5.9",
"@types/sharp": "^0.31.1",
"astro": "^3.0.11",
"at-scripts": "workspace:*",
"c8": "^8.0.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}