43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "webgpu-seed",
|
|
"version": "0.1.0",
|
|
"description": "🔺 A simple hello triangle example introducing WebGPU.",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"start": "npm i && npm run build && npm run dev",
|
|
"dev": "http-server",
|
|
"build": "cross-env NODE_ENV=production ts-node webpack.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alaingalvan/webgpu-seed.git"
|
|
},
|
|
"keywords": [
|
|
"webgpu",
|
|
"webgl",
|
|
"example",
|
|
"seed",
|
|
"types",
|
|
"typescript"
|
|
],
|
|
"author": "Alain Galvan",
|
|
"license": "Unlicense",
|
|
"bugs": {
|
|
"url": "https://github.com/alaingalvan/webgpu-seed/issues"
|
|
},
|
|
"homepage": "https://github.com/alaingalvan/webgpu-seed#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.x",
|
|
"@webgpu/types": "^0.1.26",
|
|
"clean-webpack-plugin": "^4.0.x",
|
|
"cross-env": "^7.0.x",
|
|
"http-server": "^14.1.x",
|
|
"ts-loader": "^9.4.x",
|
|
"ts-node": "^10.9.x",
|
|
"typescript": "^4.9.x",
|
|
"webpack": "^5.75.x"
|
|
},
|
|
"dependencies": {
|
|
"gl-matrix": "^3.4.3"
|
|
}
|
|
}
|