forked from Chitvan14/astro-reactive-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "astro-reactive-library",
"description": "Astro components for building reactive user interfaces 🚀",
"version": "0.0.0",
"repository": "https://github.com/ayoayco/astro-reactive-library",
"homepage": "https://ayco.io/showcase/astro-reactive-library#readme",
"author": {
"name": "Ayo Ayco",
"email": "[email protected]",
"url": "https://ayco.io"
},
"type": "module",
"exports": {
".": "./index.ts"
},
"scripts": {
"start": "turbo run dev --filter=demo",
"demo": "turbo run dev --filter=demo",
"docs": "turbo run dev --filter=docs",
"landing-page": "turbo run dev --filter=landing-page",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"build": "turbo run build",
"check": "turbo run check",
"clean": "turbo clean",
"test:watch": "turbo run test:watch",
"patch": "npm version patch -w",
"minor": "npm version minor -w",
"major": "npm version major -w",
"publish": "turbo run lint build test && npm publish --access public -w"
},
"license": "ISC",
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"prettier-plugin-astro": "^0.7.0"
},
"devDependencies": {
"eslint-config-turbo": "^0.0.4",
"rimraf": "^3.0.2",
"turbo": "^1.6.3"
}
}