astro-reactive-form/packages/common/package.json
Ayo Ayco 4d2a577b0e
chore: update deps (#305)
* chore: update deps

* chore: update deps for apps/docs

* chore: update landing-page deps

* chore: update monorepo deps

* chore: add astro as dep to config

* chore: update package lock

* fix: tailwind import on landing-page

* chore: type module

* chore: remove ci run for node 16

* chore: ci run ci

* chore: remove astro check from ci

* chore: remove lint check from ci

* fix: tailwindcss import

* fix: check errors on apps

* chore: fix npm run check

* chore: updat emonorepo deps

* chore: not a module

* chore: use astro-iconify instead

* chore: update prettier

* chore: use prettier formatter

* chore: update lint deps

* chore: run lint on ci

* chore: add changeset
2023-09-25 16:27:50 +02:00

39 lines
855 B
JSON

{
"name": "@astro-reactive/common",
"version": "0.1.9",
"description": "Common code for Astro Reactive Packages",
"main": "index.ts",
"types": "./types/index.ts",
"type": "module",
"devDependencies": {
"@astro-reactive/tsconfig": "*",
"rimraf": "^3.0.2"
},
"exports": {
".": "./index.ts"
},
"scripts": {
"check": "tsc --noEmit",
"clean": "rimraf node_modules .turbo dist"
},
"files": [
"types/",
"index.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/astro-reactive/astro-reactive.git"
},
"author": "astro-reactive",
"license": "MIT",
"bugs": {
"url": "https://github.com/astro-reactive/astro-reactive/issues"
},
"homepage": "https://astro-reactive.dev",
"publishConfig": {
"access": "public"
},
"dependencies": {
"astro": "^3.1.2"
}
}