-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.76 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.76 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
{
"name": "@sku-private/monorepo",
"private": true,
"type": "module",
"scripts": {
"plop": "pnpm --filter '@sku-private/plop' plop",
"postinstall": "node ./postinstall.js",
"prepare": "husky",
"lint": "pnpm run '/^lint:.*/'",
"lint:eslint": "eslint --cache --cache-location 'node_modules/.cache/eslint/.eslintcache' .",
"lint:prettier": "prettier --cache --experimental-cli --list-different .",
"lint:tsc": "tsc",
"lint:tsc:sku": "pnpm --filter 'sku' lint:tsc",
"build": "tsdown",
"check": "pnpm install --frozen-lockfile && echo 'Ignore paths from lint-staged'",
"fixture": "pnpm --filter '@sku-private/fixture-cli' fixture",
"test": "SKU_TELEMETRY=false SKU_DISABLE_CACHE=true OPEN_TAB=false vitest run",
"test:update": "SKU_TELEMETRY=false SKU_DISABLE_CACHE=true OPEN_TAB=false vitest run -u",
"setup-test-hosts": "tsx private/test-utils/setupTestHosts",
"start:docs": "pnpm run --filter @sku-private/docs start",
"format": "eslint --cache --cache-location 'node_modules/.cache/eslint/.eslintcache' --fix . && prettier --cache --experimental-cli --write . ",
"deploy-docs": "pnpm run --filter @sku-private/docs deploy",
"release": "pnpm deploy-docs && changeset publish",
"version": "changeset version && pnpm install --lockfile-only"
},
"lint-staged": {
"+(package.json|pnpm-lock.yaml)": [
"pnpm run check"
],
"**/*.js": [
"eslint --cache --fix"
],
"**/*.{js,ts,tsx,md,css}": [
"prettier --cache --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/sku.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/sku/issues"
},
"homepage": "https://github.com/seek-oss/sku#readme",
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@changesets/get-github-info": "^0.6.0",
"@sku-private/playwright": "workspace:*",
"@sku-private/test-utils": "workspace:*",
"@sku-private/testing-library": "workspace:*",
"@tsconfig/node22": "^22.0.2",
"@types/node": "catalog:",
"cli-testing-library": "^3.0.1",
"dedent": "^1.5.1",
"eslint": "^9.10.0",
"eslint-config-seek": "^15.0.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-n": "^17.21.0",
"husky": "^9.0.0",
"lint-staged": "^16.0.0",
"playwright": "^1.56.1",
"prettier": "~3.6.2",
"renovate-config-seek": "^0.4.0",
"tsdown": "^0.16.7",
"tsx": "^4.19.4",
"typescript": "~5.9.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "catalog:"
},
"engines": {
"node": ">=22.19.0"
},
"packageManager": "pnpm@10.30.1",
"skuSkipPostInstall": true,
"skuSkipConfigure": true,
"skuSkipValidatePeerDeps": true
}