astro-resume/package.json
2023-09-19 17:31:20 +02:00

41 lines
916 B
JSON

{
"name": "@ayco/astro-resume",
"author": "Ayo Ayco",
"homepage": "https://sr.ht/~ayoayco/astro-resume",
"repository": {
"type": "git",
"url": "https://git.sr.ht/~ayoayco/astro-resume"
},
"type": "module",
"version": "0.3.6",
"keywords": [
"astro-component",
"css",
"ui"
],
"license": "MIT",
"exports": {
".": "./index.ts"
},
"files": [
"src/Serialize.astro",
"src/deserialize.ts",
"index.ts"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"build:publish": "astro build && npm publish --access public",
"publish:patch": "npm version patch && npm run build:publish",
"publish:minor": "npm version minor && npm run build:publish"
},
"devDependencies": {
"devalue": "^4.3.2"
},
"peerDependencies": {
"astro": "^3.1.1"
}
}