-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "@valbuild/root",
"version": "0.0.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/valbuild/val.git"
},
"scripts": {
"build": "preconstruct build && pnpm --filter @valbuild/ui build",
"postinstall": "preconstruct dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"test": "jest",
"version-packages": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm run build && changeset publish",
"dev:example-next": "concurrently -k \"cd packages/ui; pnpm run dev\" \"cd examples/next; pnpm run dev\""
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@changesets/cli": "^2.29.8",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@preconstruct/cli": "^2.8.12",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"babel-jest": "^30.2.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.0.0",
"jest": "30.2",
"prettier": "^3.8.0"
},
"preconstruct": {
"packages": [
"packages/*"
],
"globals": {
"react": "React",
"react/jsx-runtime": "ReactJSX",
"react/jsx-dev-runtime": "ReactJSXDev"
},
"exports": true
}
}