-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"description": "Application that underlies the FF New Tab",
"name": "firefox-home-new-tab",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-case": [
2,
"always",
"lower-case"
],
"scope-empty": [
2,
"never"
]
}
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"syncpack": "^14.3.0",
"turbo": "^2.9.6",
"typescript": "6.0.2",
"vitest": "^4.1.4"
},
"engines": {
"node": "^24",
"pnpm": "^10"
},
"license": "MPL-2.0",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"overrides": {
"handlebars": ">=4.7.9",
"lodash-es": ">=4.18.0",
"picomatch@2": ">=2.3.2",
"picomatch@4": ">=4.0.4",
"rollup": ">=4.59.0"
},
"peerDependencyRules": {
"ignoreMissing": [
"stylelint"
],
"allowedVersions": {
"stylelint": ">=7 <=17"
}
},
"onlyBuiltDependencies": [
"@swc/core",
"core-js-pure",
"esbuild"
]
},
"private": true,
"scripts": {
"build": "turbo run build l10n:extract",
"check-types": "turbo run check-types",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo",
"dev": "turbo run dev",
"docs:build": "pnpm -C docs docs:build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "pnpm -C config/generator-config generator",
"gen:context": "pnpm -C config/context-generator generate",
"lint": "turbo run lint",
"lint-staged": "turbo run lint-staged",
"postinstall": "syncpack fix && syncpack format",
"prepare": "husky",
"rebundle": "turbo run rebundle",
"storybook": "turbo run @config/storybook-config#storybook",
"style-lint": "turbo run style-lint",
"sync-assets": "turbo run sync-assets",
"test": "turbo run test",
"test-update": "turbo run test-update"
},
"syncpack": {
"customTypes": {
"engines": {
"path": "engines",
"strategy": "versionsByName"
}
},
"versionGroups": [
{
"label": "Ignore everything except engines",
"dependencies": [
"!engines"
],
"isIgnored": true
}
],
"sortFirst": [
"author",
"description",
"name",
"version"
]
}
}