50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
|
|
{
|
||
|
|
"name": "@esengine/particle",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "ECS-based 2D particle system",
|
||
|
|
"esengine": {
|
||
|
|
"plugin": true,
|
||
|
|
"pluginExport": "ParticlePlugin",
|
||
|
|
"category": "rendering",
|
||
|
|
"isEnginePlugin": true
|
||
|
|
},
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"module": "dist/index.js",
|
||
|
|
"types": "dist/index.d.ts",
|
||
|
|
"type": "module",
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"import": "./dist/index.js"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsup",
|
||
|
|
"build:watch": "tsup --watch",
|
||
|
|
"type-check": "tsc --noEmit",
|
||
|
|
"clean": "rimraf dist"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@esengine/asset-system": "workspace:*",
|
||
|
|
"@esengine/ecs-framework": "workspace:*",
|
||
|
|
"@esengine/ecs-framework-math": "workspace:*",
|
||
|
|
"@esengine/engine-core": "workspace:*",
|
||
|
|
"@esengine/build-config": "workspace:*",
|
||
|
|
"rimraf": "^5.0.5",
|
||
|
|
"tsup": "^8.0.0",
|
||
|
|
"typescript": "^5.3.3"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"ecs",
|
||
|
|
"particle",
|
||
|
|
"2d",
|
||
|
|
"webgl",
|
||
|
|
"effects"
|
||
|
|
],
|
||
|
|
"author": "yhh",
|
||
|
|
"license": "MIT"
|
||
|
|
}
|