-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 Bytes
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
{
"name": "astro-reactive-form-workspace",
"description": "Astro Reactive Form Workspace",
"version": "0.0.0",
"repository": "https://github.com/ayoayco/astro-reactive-library",
"homepage": "https://ayco.io/showcase/astro-reactive-form",
"author": {
"name": "Ayo Ayco",
"email": "ramon.aycojr@gmail.com",
"url": "https://ayco.io"
},
"type": "module",
"exports": {
".": "./index.ts"
},
"scripts": {
"dev": "npm run dev -w demo",
"bump-patch": "npm version patch -w",
"bump-minor": "npm version minor -w",
"bump-major": "npm version major -w",
"publish": "npm publish --public -w"
},
"license": "ISC",
"workspaces": [
"demo",
"packages/astro-reactive-form",
"packages/astro-reactive-validator"
],
"dependencies": {
"astro": "^1.4.2"
}
}