-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
88 lines (88 loc) · 2.41 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
{
"private": true,
"contributors": [],
"homepage": "https://github.com/antvis/layout",
"bugs": {
"url": "https://github.com/antvis/layout/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/layout.git"
},
"license": "MIT",
"author": "antv",
"scripts": {
"lint-staged": "lint-staged",
"build": "pnpm -r run build",
"ci": "pnpm -r run ci",
"watch": "pnpm --parallel -r run watch",
"prepare": "husky install",
"test": "jest",
"coverage": "jest --coverage",
"benchmarks": "run-p benchmarks:*",
"benchmarks:forceatlas2": "node benchmarks/forceatlas2.test.js",
"dev": "vite",
"build:site": "vite build && cp site/enable-threads.js site/dist",
"deploy": "gh-pages -d site/dist",
"preview": "vite preview --port 9092",
"prettier": "prettier --write \"**/*.ts\""
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
],
"*.ts": [
"eslint --fix"
]
},
"devDependencies": {
"@antv/g": "^5.18.25",
"@antv/g-canvas": "^1.11.27",
"@antv/g-plugin-3d": "^1.9.34",
"@antv/g-plugin-control": "^1.9.22",
"@antv/g-webgl": "^1.9.37",
"@antv/graphlib": "^2.0.3",
"@babel/core": "^7.24.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@changesets/cli": "^2.27.1",
"@swc/core": "^1.4.12",
"@swc/jest": "^0.2.36",
"@types/jest": "latest",
"babel-jest": "29.7.0",
"babel-loader": "^8.3.0",
"benchmark": "^2.1.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^5.0.0",
"graphology": "^0.25.4",
"graphology-generators": "^0.11.2",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-types": "^0.24.7",
"husky": "^7.0.4",
"iperf": "0.1.0-beta.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.5.0",
"lil-gui": "^0.16.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5",
"vite": "^4.5.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}