-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 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
{
"name": "lynx-examples",
"version": "0.0.0",
"private": true,
"description": "The examples for Lynx",
"repository": {
"type": "git",
"url": "git+https://github.com/lynx-family/lynx-examples.git"
},
"license": "Apache-2.0",
"author": "Lynx Authors",
"scripts": {
"build": "turbo run build",
"prepare": "husky",
"release": "npm run build && pnpm changeset publish"
},
"nano-staged": {
"*.{css,scss,js,jsx,ts,tsx,mjs,cjs,json,jsonc,md}": [
"dprint fmt --allow-no-files --"
]
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@pnpm/meta-updater": "^2.0.6",
"@rsbuild/plugin-type-check": "1.3.4",
"dprint": "^0.52.0",
"husky": "^9.1.7",
"nano-staged": "^0.9.0",
"sort-package-json": "^3.6.1",
"turbo": "^2.8.13"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=22",
"pnpm": "10.30.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"dprint"
],
"overrides": {
"@lynx-js/types": "catalog:"
},
"ignoredBuiltDependencies": [
"core-js"
]
}
}