-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 753 Bytes
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
{
"name": "gpujs-real-renderer",
"version": "0.8.0",
"description": "A Real Time 2D Graphical Rendering Engine Made With GPU.js",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/HarshKhandeparkar/gpujs-real-renderer.git",
"author": "Harsh Khandeparkar",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc && rollup -c",
"npm-publish": "yarn build && git add dist && yarn publish"
},
"dependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.26.5",
"rollup-plugin-terser": "^7.0.0"
},
"devDependencies": {
"@types/node": "^14.6.0",
"gpu.js": "^2.11.2",
"typescript": "^4.0.2"
}
}