-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.15 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@elenajs/monorepo",
"private": true,
"author": "Elena <hi@elenajs.com>",
"homepage": "https://elenajs.com/",
"license": "MIT",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"keywords": [
"progressive web components",
"custom elements manifest",
"progressive enhancement",
"custom elements",
"web components",
"design system",
"javascript",
"typescript",
"elena",
"ssr"
],
"engines": {
"node": ">= 22",
"yarn": "please-use-npm"
},
"prettier": "@elenajs/prettier-config",
"resolutions": {
"@elenajs/core": "workspace:*",
"@elenajs/components": "workspace:*",
"@elenajs/bundler": "workspace:*",
"@elenajs/cli": "workspace:*",
"@elenajs/eslint-config": "workspace:*",
"@elenajs/plugin-cem-prop": "workspace:*",
"@elenajs/plugin-cem-define": "workspace:*",
"@elenajs/plugin-cem-tag": "workspace:*",
"@elenajs/plugin-cem-typescript": "workspace:*",
"@elenajs/plugin-rollup-css": "workspace:*",
"@elenajs/prettier-config": "workspace:*",
"@elenajs/ssr": "workspace:*",
"@elenajs/mcp": "workspace:*"
},
"devDependencies": {
"@elenajs/eslint-config": "^1.0.0",
"@elenajs/prettier-config": "^1.0.0",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"happy-dom": "20.8.9",
"lerna": "9.0.7",
"prettier": "3.8.1",
"vitest": "4.1.2"
},
"scripts": {
"build": "NX_TASKS_RUNNER_DYNAMIC_OUTPUT=false lerna run build",
"test": "vitest run",
"lint": "eslint \"packages/**/*.{js,ts}\" --cache",
"release": "pnpm install --frozen-lockfile && pnpm build && lerna run postbuild && pnpm test && lerna version --no-private -m \"[publish]: New package versions\"",
"release:dry-run": "pnpm install --frozen-lockfile && pnpm lerna version --no-private --no-push --no-git-tag-version",
"cli": "node packages/cli/src/cli.js",
"format": "prettier . --write"
},
"pnpm": {
"overrides": {
"axios": "1.15.0",
"brace-expansion": "5.0.5"
}
}
}