-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 KB
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
{
"name": "web-component-dev-tools-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for the Web Component Dev Tools scripts, plugins and examples",
"keywords": [
"dev-tools",
"monorepo",
"plugin",
"vite",
"web-components"
],
"scripts": {
"build": "pnpm --filter '*' build",
"dev": "pnpm --filter vite-example dev",
"dev:webpack": "pnpm --filter webpack-example dev",
"build:plugin": "pnpm --filter vite-plugin build",
"build:webpack-plugin": "pnpm --filter webpack-plugin build",
"build:client": "pnpm --filter client build",
"build:lit-components": "pnpm --filter 'lit-components' build",
"build:react-lit-components": "pnpm --filter 'react-lit-components' build",
"changeset": "changeset",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint --type-aware --type-check",
"lint:fix": "oxlint --fix"
},
"devDependencies": {
"@lazy-release/changesets": "^0.7.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"oxlint-tsgolint": "^0.11.4"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@9.15.4"
}