-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 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
{
"name": "react-directives-plugin",
"version": "1.0.0",
"description": "Vite plugin that allows you to add react directives to files behind the scenes",
"scripts": {
"build": "pnpm run --filter=\"./packages/**/*\" build",
"build:watch": "pnpm build && pnpm run --filter=\"./packages/**/*\" --parallel build --watch",
"clean": "git clean -fdX .",
"clean:build": "git clean -fdx -e node_modules .",
"typecheck": "pnpm run --filter=\"./packages/**/*\" --parallel typecheck",
"test": "pnpm run --filter=\"./packages/**/*\" --parallel test",
"test:cov": "pnpm run --filter=\"./packages/**/*\" --parallel test:cov",
"dev": "pnpm build && pnpm run --parallel dev",
"check": "biome check .",
"check:fix": "biome check --fix .",
"changeset": "changeset",
"release": "changeset publish",
"local-release": "changeset version && changeset publish",
"version": "changeset version"
},
"author": "forge-42",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/forge-42/react-directives-plugin.git"
},
"bugs": {
"url": "https://github.com/forge-42/react-directives-plugin/issues"
},
"homepage": "https://github.com/forge-42/react-directives-plugin#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.0",
"@types/node": "^20.17.30",
"lefthook": "^1.11.10"
},
"packageManager": "pnpm@10.6.5",
"engines": {
"pnpm": ">=10.6.5",
"node": ">=20.0.0"
}
}