-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
72 lines (72 loc) · 2.48 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
{
"name": "gpu-io",
"version": "0.2.7",
"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/gpu-io.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 karma.conf.js",
"build": "rollup --config && 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 @types/three@latest 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": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/file-saver": "^2.0.3",
"@types/offscreencanvas": "^2019.7.0",
"@types/three": "^0.127.1",
"chai": "^4.3.6",
"concat": "^1.0.3",
"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",
"rollup": "^3.21.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.3.0",
"three": "^0.151.3",
"tslib": "^2.5.0",
"typedoc": "^0.23.16",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@amandaghassaei/type-checks": "^1.0.2",
"@petamoriken/float16": "^3.6.6",
"changedpi": "^1.0.4",
"file-saver": "^2.0.5"
}
}