-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "craft-cross-cms",
"private": true,
"description": "A monorepo for Craft Cross CMS (xcms) packages",
"license": "Apache-2.0",
"author": "PLAID, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/plaidev/craft-cross-cms.git"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint .",
"lint:secretlint": "secretlint '**/*'",
"lint:knip": "knip",
"lint:prettier": "prettier --check .",
"fix": "pnpm run \"/^fix:.*/\"",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm build && pnpm test && changeset publish"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@eslint/js": "catalog:",
"@secretlint/secretlint-rule-preset-recommend": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"knip": "catalog:",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"secretlint": "catalog:",
"turbo": "catalog:",
"typescript-eslint": "catalog:"
}
}