-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 KB
/
package.json
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
{
"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": "turbo run build",
"test": "turbo test",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test:types": "turbo test:types",
"prepare": "husky",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:publish": "changeset publish",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws"
},
"license": "MIT",
"devDependencies": {
"husky": "^9.0.11",
"prettier": "^3.3.1",
"turbo": "^2.0.1",
"typescript": "^5.4.5",
"@changesets/cli": "^2.27.1",
"@design-sync/cli": "workspace:*",
"tsx": "^4.11.2"
},
"resolutions": {
"esbuild": "^0.21.4"
},
"packageManager": "pnpm@9.2.0",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"@design-sync/cli": "workspace:*"
}
}
}