-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"private": false,
"name": "@attio/react-descendants",
"version": "1.0.1",
"author": "Braden Marshall <braden1996@hotmail.co.uk>",
"license": "MIT",
"bugs": "https://github.com/attio/react-descendants/issues",
"homepage": "https://github.com/attio/react-descendants",
"repository": "attio/react-descendants.git",
"type": "module",
"main": "lib/index.js",
"source": "src/",
"react-native": "src/index.tsx",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"module": "lib/index.cjs",
"engines": {
"bun": ">=1.2.21"
},
"packageManager": "bun@1.2.21",
"scripts": {
"build": "tsup --tsconfig tsconfig.lib.json",
"changeset-publish": "bun run build-release && changeset publish",
"changeset-version": "changeset version && bun run format-fix",
"check": "bun run check-typescript && bun run check-biome && bun run check-syncpack && bun run check-cspell",
"check-biome": "biome check",
"check-cspell": "cspell . --quiet",
"check-fix": "bun run check-typescript && bun run check-fix-biome && bun run check-fix-syncpack && bun run check-cspell",
"check-fix-biome": "biome check --write",
"check-fix-syncpack": "syncpack format --log-levels error && syncpack lint",
"check-syncpack": "syncpack format --log-levels error --check && syncpack lint",
"check-typescript": "tsc --build --noEmit",
"clean": "rm -rf lib out-tsc"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@changesets/cli": "^2.29.6",
"@swc/core": "^1.13.5",
"@types/node": "^24.3.0",
"@types/react": "*",
"cspell": "^9.2.0",
"syncpack": "14.0.0-alpha.19",
"tsup": "^8.5.0",
"typescript": "~5.9.2"
},
"peerDependencies": {
"react": "*"
},
"trustedDependencies": [
"@biomejs/biome"
]
}