-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "@graphrefly/solid",
"version": "0.1.0",
"description": "Solid bindings for GraphReFly.",
"repository": {
"type": "git",
"url": "git+https://github.com/graphrefly/graphrefly-solid.git"
},
"bugs": {
"url": "https://github.com/graphrefly/graphrefly-solid/issues"
},
"homepage": "https://graphrefly.dev",
"type": "module",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"build": "pnpm run clean && tsup src/index.ts --format esm,cjs --dts --clean && node scripts/check-package.mjs .",
"build:all": "pnpm run build",
"test": "vitest run",
"test:all": "pnpm run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && changeset publish"
},
"peerDependencies": {
"@graphrefly/ts": ">=0.6.2 <1.0.0",
"solid-js": "^1.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.31.0",
"@graphrefly/ts": "0.6.2",
"@types/node": "^25.5.0",
"solid-js": "^1.9.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^4.1.7"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620",
"engines": {
"node": ">=24"
},
"license": "MIT"
}