-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (29 loc) · 741 Bytes
/
package.json
File metadata and controls
31 lines (29 loc) · 741 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm --filter=!docs --filter=!vilay-example -r build",
"postinstall": "pnpm build",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,astro}\"",
"release": "changeset publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.1",
"prettier-plugin-astro": "^0.1.0-next.4",
"typescript": "^4.6.3"
},
"dependencies": {
"@changesets/cli": "^2.23.2"
},
"packageManager": "pnpm@7.6.0",
"engines": {
"pnpm": "^7.0.0"
}
}