-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@graphrefly/react",
"version": "0.1.0",
"description": "Reactive binding + presentation layer for GraphReFly (React). Currently a binding-core spike on top of @graphrefly/ts.",
"repository": {
"type": "git",
"url": "git+https://github.com/graphrefly/graphrefly-react.git"
},
"bugs": {
"url": "https://github.com/graphrefly/graphrefly-react/issues"
},
"homepage": "https://graphrefly.dev",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"sideEffects": false,
"type": "module",
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620",
"engines": {
"node": ">=24"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"build": "pnpm run clean && tsup src/index.ts --format esm,cjs --dts --clean && node scripts/check-package-exports.mjs",
"test": "vitest run",
"test:watch": "vitest",
"dashboard": "node dashboard/build.mjs",
"dashboard:check": "node dashboard/build.mjs --check",
"build:all": "pnpm run build",
"test:all": "pnpm run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.31.0",
"@graphrefly/ts": "0.6.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"jsdom": "^29.1.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^4.1.7"
},
"peerDependencies": {
"@graphrefly/ts": ">=0.6.2 <1.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}