-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.03 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.03 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
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
104
105
106
107
{
"name": "cytoscape-bubblesets",
"description": "Cytoscape.js plugin for rendering bubblesets",
"version": "4.1.0",
"author": {
"name": "Samuel Gratzl",
"email": "sam@sgratzl.com",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"homepage": "https://github.com/upsetjs/cytoscape.js-bubblesets",
"bugs": {
"url": "https://github.com/upsetjs/cytoscape.js-bubblesets/issues"
},
"keywords": [
"cytoscape",
"bubblesets"
],
"repository": {
"type": "git",
"url": "https://github.com/upsetjs/cytoscape.js-bubblesets.git"
},
"global": "CytoscapeBubbleSets",
"dependencies": {
"@types/lodash.throttle": "^4.1.9",
"bubblesets-js": "^3.0.0",
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"cytoscape": "^3.23.0",
"cytoscape-layers": "^3.0.0"
},
"browserslist": [
"Firefox ESR",
"last 2 Chrome versions",
"last 2 Firefox versions"
],
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"require": "build/index.cjs",
"umd": "build/index.umd.js",
"unpkg": "build/index.umd.min.js",
"jsdelivr": "build/index.umd.min.js",
"types": "build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.cjs",
"scripts": "./build/index.umd.min.js",
"types": "./build/index.d.ts"
}
},
"sideEffects": false,
"files": [
"build",
"src/**/*.ts",
"src/**/*.tsx"
],
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "~9.37.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"@vitest/coverage-v8": "^3.2.4",
"@yarnpkg/sdks": "^3.2.3",
"cytoscape": "^3.33.1",
"cytoscape-layers": "^3.0.0",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.52.4",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.13",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.9",
"vitest": "^3.2.4"
},
"scripts": {
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",
"compile": "tsc -b tsconfig.c.json",
"start": "yarn run watch",
"watch": "rollup -c -w",
"build": "rollup -c",
"test": "vitest --passWithNoTests",
"test:watch": "yarn run test --watch",
"test:coverage": "yarn run test --coverage",
"lint": "yarn run eslint && yarn run prettier",
"fix": "yarn run eslint:fix && yarn run prettier:write",
"prettier:write": "prettier \"*\" \"*/**\" --write",
"prettier": "prettier \"*\" \"*/**\" --check",
"eslint": "eslint src --cache",
"eslint:fix": "yarn run eslint --fix",
"docs": "typedoc --options typedoc.json",
"prepare": "yarn run build"
},
"packageManager": "yarn@4.10.3"
}