-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
48
49
{
"name": "graplix",
"version": "0.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/daangn/graplix.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.mts",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsdown",
"format": "biome check --fix",
"release": "changeset publish",
"test": "vitest run ./src",
"typecheck": "tsc --noEmit"
},
"resolutions": {
"graphology@^0.25.4": "patch:graphology@npm%3A0.25.4#./.yarn/patches/graphology-npm-0.25.4-f37e1f9f63.patch"
},
"dependencies": {
"remeda": "^2.6.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.10",
"@vitest/coverage-v8": "^2.0.4",
"dataloader": "^2.2.2",
"graphology": "^0.25.4",
"graphology-types": "^0.24.7",
"tsdown": "^0.4.1",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"packageManager": "[email protected]"
}