-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.08 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
{
"name": "gpu-io",
"version": "0.2.3",
"description": "A GPU-accelerated computing library for physics simulations and other mathematical calculations",
"keywords": [
"gpgpu",
"gpu",
"glsl",
"webgl",
"webgl1",
"webgl2",
"shader",
"physics",
"particle",
"simulation",
"parallel",
"image processing",
"cellular automata"
],
"files": [
"dist",
"src"
],
"main": "dist/gpu-io.js",
"types": "dist/types/index.d.ts",
"homepage": "https://apps.amandaghassaei.com/gpu-io/examples/",
"repository": {
"type": "git",
"url": "https://github.com/amandaghassaei/gpu-io.git"
},
"scripts": {
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"build": "webpack && npm run docs",
"docs": "typedoc --options ./typedoc.json && npm run md-to-html",
"md-to-html": "marked -i ./examples/README.md -o ./examples/index.html && concat -o ./examples/index.html ./examples/common/github-markdown-wrapper1.html ./examples/index.html ./examples/common/github-markdown-wrapper2.html",
"update-three": "npm install --save-dev three@latest && cp ./node_modules/three/build/three.min.js ./examples/common/ && cp ./node_modules/three/examples/js/controls/OrbitControls.js ./examples/common/"
},
"author": "Amanda Ghassaei",
"license": "MIT",
"devDependencies": {
"@types/file-saver": "^2.0.3",
"@types/offscreencanvas": "^2019.7.0",
"@types/three": "^0.127.1",
"chai": "^4.3.6",
"concat": "^1.0.3",
"install": "^0.13.0",
"karma": "^6.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"marked": "^4.1.1",
"mocha": "^10.0.0",
"three": "^0.145.0",
"ts-loader": "^8.4.0",
"typedoc": "^0.23.16",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@amandaghassaei/type-checks": "^1.0.2",
"@petamoriken/float16": "^3.6.6",
"changedpi": "^1.0.4",
"file-saver": "^2.0.5"
}
}