Files
moeka-project/packages/gpuu/package.json
T
2025-04-19 19:08:53 +08:00

51 lines
1.1 KiB
JSON

{
"name": "gpuu",
"type": "module",
"version": "1.0.0",
"description": "A collection of utilities for working with GPUs, especially for WebGPU.",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
"url": "https://github.com/nekomeowww"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moeru-ai/airi.git",
"directory": "packages/gpuu"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./webgpu": {
"types": "./dist/webgpu/index.d.ts",
"import": "./dist/webgpu/index.mjs",
"require": "./dist/webgpu/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "pnpm run stub",
"stub": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"defu": "^6.1.4"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@webgpu/types": "^0.1.60"
}
}