-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 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
{
"name": "plebeiangraphlibrary",
"version": "2.2.3",
"description": "A NetworkX like package for graphs in javascript",
"source": "./Src/index.ts",
"main": "./Build/pgl.js",
"types": "./Build/index.d.ts",
"module": "./Build/pgl_module.js",
"exports": {
".": {
"import": { "types": "./Build/index.d.ts", "default": "./Build/pgl_module.js" },
"require": { "types": "./Build/index.d.ts", "default": "./Build/pgl.js" }
}
},
"scripts": {
"watch": "vite build --watch",
"build": "rm -rf Build && vite build",
"build:all": "npm run build && npm run document",
"test": "node ./test/test_1.js",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"document": "rm -rf docs && npx typedoc --options typedoc.json && cp graph_animation.gif docs/",
"document:public": "npm run document && rm -rf public && mkdir -p public && cp -R docs/. public/",
"examples:public": "rm -rf public && mkdir -p public && cp -R Examples/. public/",
"deploy:public": "npm run build && npm run document && rm -rf public && mkdir -p public && mkdir -p public/Build && cp -R Build/. public/Build/ && cp -R Examples/. public/ && cp -R docs/. public/",
"serve": "python3 -m http.server 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/range-et/PGL.git"
},
"keywords": [
"Network",
"Graphs",
"Webgl",
"Visualization"
],
"files": [
"Build/",
"Examples/",
"README.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE"
],
"author": "Indrajeet Haldar",
"license": "MIT",
"bugs": {
"url": "https://github.com/range-et/PGL/issues"
},
"homepage": "https://www.plebeiangraphlibrary.com/",
"dependencies": {
"gl-matrix": "^3.4.3",
"three": "^0.170.0"
},
"devDependencies": {
"@types/three": "^0.170.0",
"express": "^4.18.2",
"jsdoc": "^4.0.2",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"puppeteer": "^21.7.0",
"shelljs": "^0.8.5",
"typedoc": "^0.24.8",
"typescript": "^5.1.3",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.4",
"vitest": "^2.1.6"
}
}