@graphrs/centrality 0.0.0-canary.de24fef
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/betweenness.d.ts +9 -0
- package/dist/betweenness.js +3 -0
- package/dist/betweenness.js.map +1 -0
- package/dist/chunk-6I4SLBPA.js +12 -0
- package/dist/chunk-6I4SLBPA.js.map +1 -0
- package/dist/chunk-7ZI2WWXG.js +12 -0
- package/dist/chunk-7ZI2WWXG.js.map +1 -0
- package/dist/chunk-BBOEMUW2.js +12 -0
- package/dist/chunk-BBOEMUW2.js.map +1 -0
- package/dist/chunk-KPJDECYL.js +12 -0
- package/dist/chunk-KPJDECYL.js.map +1 -0
- package/dist/chunk-XBQCAXBX.js +12 -0
- package/dist/chunk-XBQCAXBX.js.map +1 -0
- package/dist/chunk-XLWEIWT6.js +12 -0
- package/dist/chunk-XLWEIWT6.js.map +1 -0
- package/dist/chunk-YOMT2Z2X.js +12 -0
- package/dist/chunk-YOMT2Z2X.js.map +1 -0
- package/dist/closeness.d.ts +8 -0
- package/dist/closeness.js +3 -0
- package/dist/closeness.js.map +1 -0
- package/dist/eigenvector.d.ts +8 -0
- package/dist/eigenvector.js +3 -0
- package/dist/eigenvector.js.map +1 -0
- package/dist/harmonic.d.ts +8 -0
- package/dist/harmonic.js +3 -0
- package/dist/harmonic.js.map +1 -0
- package/dist/hits.d.ts +13 -0
- package/dist/hits.js +3 -0
- package/dist/hits.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/dist/katz.d.ts +9 -0
- package/dist/katz.js +3 -0
- package/dist/katz.js.map +1 -0
- package/dist/pagerank.d.ts +10 -0
- package/dist/pagerank.js +3 -0
- package/dist/pagerank.js.map +1 -0
- package/package.json +75 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-present Totoro-jam
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Graph, CentralityResult } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
interface BetweennessOptions {
|
|
4
|
+
directed?: boolean;
|
|
5
|
+
normalized?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function betweenness(graph: Graph, options?: BetweennessOptions): Promise<CentralityResult>;
|
|
8
|
+
|
|
9
|
+
export { type BetweennessOptions, betweenness };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"betweenness.js"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/katz.ts
|
|
4
|
+
async function katz(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { katz };
|
|
11
|
+
//# sourceMappingURL=chunk-6I4SLBPA.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-6I4SLBPA.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/katz.ts"],"names":[],"mappings":";;;AAOA,eAAsB,IAAA,CAAK,OAAc,OAAA,EAAkD;AACzF,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-6I4SLBPA.js","sourcesContent":["import { getWasm, type Graph, type CentralityResult } from '@graphrs/core';\n\nexport interface KatzOptions {\n alpha?: number;\n beta?: number;\n}\n\nexport async function katz(graph: Graph, options?: KatzOptions): Promise<CentralityResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/pagerank.ts
|
|
4
|
+
async function pagerank(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { pagerank };
|
|
11
|
+
//# sourceMappingURL=chunk-7ZI2WWXG.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-7ZI2WWXG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/pagerank.ts"],"names":[],"mappings":";;;AAQA,eAAsB,QAAA,CAAS,OAAc,OAAA,EAAsD;AACjG,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-7ZI2WWXG.js","sourcesContent":["import { getWasm, type Graph, type CentralityResult } from '@graphrs/core';\n\nexport interface PagerankOptions {\n damping?: number;\n iterations?: number;\n tolerance?: number;\n}\n\nexport async function pagerank(graph: Graph, options?: PagerankOptions): Promise<CentralityResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/closeness.ts
|
|
4
|
+
async function closeness(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { closeness };
|
|
11
|
+
//# sourceMappingURL=chunk-BBOEMUW2.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-BBOEMUW2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/closeness.ts"],"names":[],"mappings":";;;AAMA,eAAsB,SAAA,CACpB,OACA,OAAA,EAC2B;AAC3B,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-BBOEMUW2.js","sourcesContent":["import { getWasm, type Graph, type CentralityResult } from '@graphrs/core';\n\nexport interface ClosenessOptions {\n normalized?: boolean;\n}\n\nexport async function closeness(\n graph: Graph,\n options?: ClosenessOptions,\n): Promise<CentralityResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/betweenness.ts
|
|
4
|
+
async function betweenness(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { betweenness };
|
|
11
|
+
//# sourceMappingURL=chunk-KPJDECYL.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-KPJDECYL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/betweenness.ts"],"names":[],"mappings":";;;AAOA,eAAsB,WAAA,CACpB,OACA,OAAA,EAC2B;AAC3B,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-KPJDECYL.js","sourcesContent":["import { getWasm, type Graph, type CentralityResult } from '@graphrs/core';\n\nexport interface BetweennessOptions {\n directed?: boolean;\n normalized?: boolean;\n}\n\nexport async function betweenness(\n graph: Graph,\n options?: BetweennessOptions,\n): Promise<CentralityResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/harmonic.ts
|
|
4
|
+
async function harmonic(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { harmonic };
|
|
11
|
+
//# sourceMappingURL=chunk-XBQCAXBX.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-XBQCAXBX.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/harmonic.ts"],"names":[],"mappings":";;;AAMA,eAAsB,QAAA,CAAS,OAAc,OAAA,EAAsD;AACjG,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-XBQCAXBX.js","sourcesContent":["import { getWasm, type Graph, type CentralityResult } from '@graphrs/core';\n\nexport interface HarmonicOptions {\n normalized?: boolean;\n}\n\nexport async function harmonic(graph: Graph, options?: HarmonicOptions): Promise<CentralityResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/hits.ts
|
|
4
|
+
async function hits(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { hits };
|
|
11
|
+
//# sourceMappingURL=chunk-XLWEIWT6.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-XLWEIWT6.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/hits.ts"],"names":[],"mappings":";;;AAYA,eAAsB,IAAA,CAAK,OAAc,OAAA,EAA4C;AACnF,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-XLWEIWT6.js","sourcesContent":["import { getWasm, type Graph } from '@graphrs/core';\n\nexport interface HitsResult {\n hubs: number[];\n authorities: number[];\n}\n\nexport interface HitsOptions {\n iterations?: number;\n tolerance?: number;\n}\n\nexport async function hits(graph: Graph, options?: HitsOptions): Promise<HitsResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getWasm } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
// src/eigenvector.ts
|
|
4
|
+
async function eigenvector(graph, options) {
|
|
5
|
+
await getWasm();
|
|
6
|
+
void graph._getEdgePairs();
|
|
7
|
+
throw new Error("Not yet implemented \u2014 WASM bindings pending");
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { eigenvector };
|
|
11
|
+
//# sourceMappingURL=chunk-YOMT2Z2X.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-YOMT2Z2X.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/eigenvector.ts"],"names":[],"mappings":";;;AAMA,eAAsB,WAAA,CACpB,OACA,OAAA,EAC2B;AAC3B,EAAc,MAAM,OAAA;AAGpB,EAAA,KAAK,MAAM,aAAA,EAAc;AACzB,EAAA,MAAM,IAAI,MAAM,kDAA6C,CAAA;AAC/D","file":"chunk-YOMT2Z2X.js","sourcesContent":["import { getWasm, type Graph, type CentralityResult } from '@graphrs/core';\n\nexport interface EigenvectorOptions {\n scale?: boolean;\n}\n\nexport async function eigenvector(\n graph: Graph,\n options?: EigenvectorOptions,\n): Promise<CentralityResult> {\n const _wasm = await getWasm();\n void _wasm;\n void options;\n void graph._getEdgePairs();\n throw new Error('Not yet implemented — WASM bindings pending');\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"closeness.js"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Graph, CentralityResult } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
interface EigenvectorOptions {
|
|
4
|
+
scale?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare function eigenvector(graph: Graph, options?: EigenvectorOptions): Promise<CentralityResult>;
|
|
7
|
+
|
|
8
|
+
export { type EigenvectorOptions, eigenvector };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"eigenvector.js"}
|
package/dist/harmonic.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"harmonic.js"}
|
package/dist/hits.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Graph } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
interface HitsResult {
|
|
4
|
+
hubs: number[];
|
|
5
|
+
authorities: number[];
|
|
6
|
+
}
|
|
7
|
+
interface HitsOptions {
|
|
8
|
+
iterations?: number;
|
|
9
|
+
tolerance?: number;
|
|
10
|
+
}
|
|
11
|
+
declare function hits(graph: Graph, options?: HitsOptions): Promise<HitsResult>;
|
|
12
|
+
|
|
13
|
+
export { type HitsOptions, type HitsResult, hits };
|
package/dist/hits.js
ADDED
package/dist/hits.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"hits.js"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { PagerankOptions, pagerank } from './pagerank.js';
|
|
2
|
+
export { BetweennessOptions, betweenness } from './betweenness.js';
|
|
3
|
+
export { ClosenessOptions, closeness } from './closeness.js';
|
|
4
|
+
export { EigenvectorOptions, eigenvector } from './eigenvector.js';
|
|
5
|
+
export { HitsOptions, HitsResult, hits } from './hits.js';
|
|
6
|
+
export { KatzOptions, katz } from './katz.js';
|
|
7
|
+
export { HarmonicOptions, harmonic } from './harmonic.js';
|
|
8
|
+
import '@graphrs/core';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { betweenness } from './chunk-KPJDECYL.js';
|
|
2
|
+
export { closeness } from './chunk-BBOEMUW2.js';
|
|
3
|
+
export { eigenvector } from './chunk-YOMT2Z2X.js';
|
|
4
|
+
export { harmonic } from './chunk-XBQCAXBX.js';
|
|
5
|
+
export { hits } from './chunk-XLWEIWT6.js';
|
|
6
|
+
export { katz } from './chunk-6I4SLBPA.js';
|
|
7
|
+
export { pagerank } from './chunk-7ZI2WWXG.js';
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/dist/katz.d.ts
ADDED
package/dist/katz.js
ADDED
package/dist/katz.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"katz.js"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Graph, CentralityResult } from '@graphrs/core';
|
|
2
|
+
|
|
3
|
+
interface PagerankOptions {
|
|
4
|
+
damping?: number;
|
|
5
|
+
iterations?: number;
|
|
6
|
+
tolerance?: number;
|
|
7
|
+
}
|
|
8
|
+
declare function pagerank(graph: Graph, options?: PagerankOptions): Promise<CentralityResult>;
|
|
9
|
+
|
|
10
|
+
export { type PagerankOptions, pagerank };
|
package/dist/pagerank.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"pagerank.js"}
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@graphrs/centrality",
|
|
3
|
+
"version": "0.0.0-canary.de24fef",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"description": "Centrality measures (PageRank, betweenness, closeness, eigenvector, HITS, Katz, harmonic) for @graphrs",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"graph",
|
|
9
|
+
"centrality",
|
|
10
|
+
"pagerank",
|
|
11
|
+
"betweenness",
|
|
12
|
+
"network-analysis"
|
|
13
|
+
],
|
|
14
|
+
"author": "Totoro-jam <moqiuchen66@gmail.com>",
|
|
15
|
+
"homepage": "https://github.com/Totoro-jam/graphrs#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/Totoro-jam/graphrs/issues"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/Totoro-jam/graphrs",
|
|
22
|
+
"directory": "packages/centrality"
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./pagerank": {
|
|
31
|
+
"types": "./dist/pagerank.d.ts",
|
|
32
|
+
"import": "./dist/pagerank.js"
|
|
33
|
+
},
|
|
34
|
+
"./betweenness": {
|
|
35
|
+
"types": "./dist/betweenness.d.ts",
|
|
36
|
+
"import": "./dist/betweenness.js"
|
|
37
|
+
},
|
|
38
|
+
"./closeness": {
|
|
39
|
+
"types": "./dist/closeness.d.ts",
|
|
40
|
+
"import": "./dist/closeness.js"
|
|
41
|
+
},
|
|
42
|
+
"./eigenvector": {
|
|
43
|
+
"types": "./dist/eigenvector.d.ts",
|
|
44
|
+
"import": "./dist/eigenvector.js"
|
|
45
|
+
},
|
|
46
|
+
"./hits": {
|
|
47
|
+
"types": "./dist/hits.d.ts",
|
|
48
|
+
"import": "./dist/hits.js"
|
|
49
|
+
},
|
|
50
|
+
"./katz": {
|
|
51
|
+
"types": "./dist/katz.d.ts",
|
|
52
|
+
"import": "./dist/katz.js"
|
|
53
|
+
},
|
|
54
|
+
"./harmonic": {
|
|
55
|
+
"types": "./dist/harmonic.d.ts",
|
|
56
|
+
"import": "./dist/harmonic.js"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"main": "./dist/index.js",
|
|
60
|
+
"types": "./dist/index.d.ts",
|
|
61
|
+
"files": [
|
|
62
|
+
"dist"
|
|
63
|
+
],
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@graphrs/core": "^0.0.0-canary.de24fef"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsup",
|
|
69
|
+
"test": "vitest run --passWithNoTests",
|
|
70
|
+
"test:ci": "vitest run --reporter=default --passWithNoTests",
|
|
71
|
+
"lint": "tsc --noEmit",
|
|
72
|
+
"typecheck": "tsc --noEmit",
|
|
73
|
+
"clean": "rm -rf dist"
|
|
74
|
+
}
|
|
75
|
+
}
|