-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
{
"name": "airtop-examples",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rm -rf .turbo node_modules",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo run lint --continue --",
"changeset": "changeset",
"changeset:add": "changeset add",
"lint:packages": "pnpm run lint:packages:semver && pnpm run lint:packages:mismatches",
"lint:packages:semver": "syncpack lint-semver-ranges",
"lint:packages:mismatches": "syncpack list-mismatches",
"syncpack:update": "syncpack update && syncpack fix-mismatches && syncpack format && pnpm i",
"syncpack:format": "syncpack format",
"syncpack:lint": "syncpack lint",
"release": "changeset publish",
"version-packages": "changeset version",
"prepare": "husky",
"publish-packages": "turbo run build && changeset version && changeset publish",
"verify-types": "turbo run verify-types --continue --"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@local/typescript-config": "workspace:*",
"husky": "9.1.7",
"prettier": "3.4.1",
"syncpack": "13.0.0",
"turbo": "2.3.3",
"typescript": "5.7.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]"
}