-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) 路 2.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) 路 2.54 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
{
"name": "figmavars",
"private": true,
"description": "Monorepo for the @figmavars packages and documentation.",
"author": "Mark Learst",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.10.0",
"scripts": {
"build": "turbo run build",
"test": "node --test scripts/check-release.test.mjs scripts/check-prose.test.mjs scripts/prose/rules.test.mjs && pnpm run check:prose && pnpm run test:release-artifacts && pnpm run test:release-workflow && turbo run test",
"test:release-artifacts": "node --test scripts/release-artifacts.test.mjs",
"test:release-workflow": "node --test scripts/release-publish.test.mjs scripts/github-release.test.mjs",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"dev": "turbo run dev",
"lint": "biome lint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:prose": "pnpm --filter figmavars-docs run generate:api && pnpm run check:prose:scan",
"check:prose:scan": "node scripts/check-prose.mjs",
"check:prose:built": "pnpm --filter figmavars-docs run generate:api && node scripts/check-prose.mjs --built",
"check:release-metadata": "node scripts/check-release.mjs",
"pack:release": "node scripts/release-artifacts.mjs pack",
"verify:release-artifacts": "node scripts/release-artifacts.mjs verify",
"check:release-artifacts": "node scripts/release-artifacts.mjs check",
"check:release:built": "pnpm run check:release-metadata && pnpm run check:prose:built && pnpm run pack:release && pnpm run check:release-artifacts && pnpm --filter @figmavars/hooks run check:size",
"check:release": "pnpm run build && pnpm run check:release:built",
"changeset": "changeset",
"version-packages": "changeset version && pnpm install --lockfile-only --no-frozen-lockfile --ignore-scripts && pnpm install --frozen-lockfile --ignore-scripts",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.4",
"@changesets/cli": "2.31.1",
"@biomejs/biome": "^2.5.2",
"@playwright/test": "1.61.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"publint": "^0.3.21",
"remark": "15.0.1",
"remark-mdx": "3.1.1",
"turbo": "^2.10.3",
"typescript": "6.0.3",
"yaml": "2.9.0"
}
}