-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 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
67
68
69
{
"name": "react-lightning",
"description": "React reconciler for rendering React apps with Lightning.js",
"author": "Plex Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/plexinc/react-lightning.git"
},
"bugs": {
"url": "https://github.com/plexinc/react-lightning/issues/new"
},
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"build:vite": "turbo build:vite",
"build:tsdown": "turbo build:tsdown",
"build:storybook": "pnpm run build --filter=@plextv/react-lightning-storybook",
"build:types": "turbo build:types",
"check:types": "turbo check:types",
"clean": "turbo clean",
"ci:publish": "pnpm run build && pnpm exec changeset publish",
"ci:version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile",
"dev": "turbo dev",
"lint": "biome check",
"lint:format": "biome check --write",
"nuke": "pnpm run clean && pnpx npkill -x -y -D && pnpm install",
"test": "pnpm run test:unit",
"test:unit": "turbo test:unit",
"unused": "tsx ./scripts/depcheck.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "2.29.8",
"@repo/configs": "workspace:*",
"@types/node": "25.0.9",
"del-cli": "7.0.0",
"depcheck": "1.4.7",
"glob": "13.0.0",
"husky": "9.1.7",
"listr2": "10.0.0",
"tsdown": "0.19.0",
"tsx": "4.21.0",
"turbo": "2.7.5",
"type-fest": "5.4.1",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-externalize-deps": "0.10.0",
"vitest": "4.0.17",
"yaml": "2.8.2"
},
"packageManager": "pnpm@10.12.3",
"engines": {
"node": ">=22"
},
"volta": {
"node": "24.11.1",
"pnpm": "10.12.3"
},
"depcheck": {
"ignoreMatches": [
"del-cli",
"rollup",
"typescript"
]
}
}