-
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.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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": "design-sync",
"version": "0.0.0",
"description": "Set of tools to help you sync your design tokens across platforms",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"examples/*",
"tooling/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"test": "bun run --filter '*' test",
"lint": "bun run --filter '*' lint",
"lint:fix": "bun run --filter '*' lint:fix",
"test:types": "bun run --filter '*' test:types",
"prepare": "husky",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:publish": "changeset publish",
"lint:ws": "bunx sherif@latest",
"postinstall": "bun lint:ws"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@design-sync/cli": "workspace:*",
"husky": "^9.1.7",
"oxfmt": "^0.32.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"resolutions": {
"esbuild": "^0.27.3"
},
"packageManager": "bun@1.3.9",
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"@design-sync/cli": "workspace:*"
}
}