-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.17 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
{
"name": "plasma-arc",
"version": "1.0.0",
"description": "Plasma Arc Project - High-performance plasma arc simulation using WebGPU.",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "jest",
"build": "node scripts/copyFiles.js"
},
"repository": {
"type": "git",
"url": "https://github.com/p3nGu1nZz/plasma-arc.git"
},
"keywords": [
"WebGPU",
"plasma",
"simulation",
"high-performance",
"graphics",
"modular",
"extendable"
],
"author": {
"name": "K. Rawson",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/p3nGu1nZz/plasma-arc/issues"
},
"homepage": "https://github.com/p3nGu1nZz/plasma-arc#readme",
"contributors": [
{
"name": "K. Rawson",
"email": "[email protected]"
}
],
"files": [
"public",
"src",
"assets",
"spaces",
"tests"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"express": "^4.18.1",
"chalk": "^5.3.0"
},
"devDependencies": {
"jest": "^29.6.4"
},
"directories": {
"lib": "src",
"test": "tests"
}
}