astro-reactive-form/packages/common/package.json
2023-11-11 20:56:38 +01:00

39 lines
858 B
JSON

{
"name": "@astro-reactive/common",
"version": "0.2.1",
"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.js.org",
"publishConfig": {
"access": "public"
},
"dependencies": {
"astro": "^3.1.2"
}
}