-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
103 lines (103 loc) · 2.46 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "graph-data-structure",
"version": "4.3.0",
"description": "A graph data structure with topological sort.",
"author": "Curran Kelleher",
"contributors": [
{
"name": "Jonathan MASSUCHETTI",
"email": "[email protected]",
"url": "https://github.com/JesusTheHun"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/datavis-tech/graph-data-structure/issues"
},
"homepage": "https://github.com/datavis-tech/graph-data-structure#readme",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.cts",
"unpkg": "./dist/index.umd.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"umd": {
"types": "./dist/index.umd.d.ts",
"default": "./dist/index.umd.js"
}
}
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "vitest --run",
"prepublishOnly": "npm run build",
"prettier": "prettier --write .",
"tsc": "tsc --noEmit --noEmitOnError",
"release": "release-it"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"@types/node": "22.10.1",
"microbundle": "0.15.1",
"prettier": "3.4.2",
"release-it": "17.10.0",
"rollup": "4.28.0",
"rollup-plugin-dts": "6.1.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"files": [
"./dist/index.cjs",
"./dist/index.cjs.map",
"./dist/index.mjs",
"./dist/index.mjs.map",
"./dist/index.umd.js",
"./dist/index.umd.js.map",
"./dist/index.umd.d.ts",
"./dist/index.d.cts",
"./dist/index.d.mts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datavis-tech/graph-data-structure.git"
},
"keywords": [
"graph",
"data",
"structures",
"algorithms"
],
"release-it": {
"git": {
"commitMessage": "${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"printWidth": 90,
"quoteProps": "consistent",
"singleAttributePerLine": false,
"singleQuote": true,
"tabWidth": 2
}
}