-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.1 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
{
"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:knip": "knip --dependencies",
"lint:prettier": "prettier --cache --experimental-cli --list-different .",
"lint:tsc": "tsc --build",
"build": "tsdown",
"check": "pnpm install --frozen-lockfile && echo 'Ignore paths from nano-staged'",
"fixture": "pnpm --filter '@sku-private/fixture-cli' fixture",
"openspec": "openspec",
"openspec:init": "openspec init",
"openspec:list": "openspec list",
"openspec:validate": "openspec validate",
"openspec:view": "openspec view",
"test": "SKU_VITE_DISABLE_WATCH=true 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 --filter @sku-private/site start",
"build:docs": "pnpm --filter @sku-private/site build",
"serve:docs": "pnpm --filter @sku-private/site serve",
"format": "eslint --cache --cache-location 'node_modules/.cache/eslint/.eslintcache' --fix . && prettier --cache --experimental-cli --write . ",
"release": "changeset publish",
"version": "changeset version && pnpm sku-inject-changelog && pnpm install --lockfile-only"
},
"nano-staged": {
"+(package.json|pnpm-lock.yaml)": [
"pnpm run check"
],
"**/*.{js,ts,tsx}": [
"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.8.0",
"@fission-ai/openspec": "^1.6.0",
"@sku-private/inject-changelog-preamble": "workspace:*",
"@sku-private/playwright": "workspace:*",
"@sku-private/test-utils": "workspace:*",
"@sku-private/testing-library": "workspace:*",
"@tsconfig/node24": "^24.0.4",
"@types/node": "catalog:",
"cli-testing-library": "catalog:",
"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",
"knip": "^6.14.2",
"nano-staged": "catalog:",
"playwright": "^1.60.0",
"prettier": "~3.9.0",
"renovate-config-seek": "^0.4.0",
"tsdown": "^0.22.0",
"tsx": "^4.19.4",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22.19.0"
},
"packageManager": "pnpm@11.24.0",
"skuSkipPostInstall": true,
"skuSkipConfigure": true,
"skuSkipValidatePeerDeps": true
}