* fix(ci): run on all PRs with conditional skip - Remove paths filter from pull_request trigger - Add check-changes job to detect code changes - Skip full CI if no code files changed - Satisfies branch protection while avoiding unnecessary builds * fix: add private:true to packages not meant for npm Prevents changesets from trying to publish internal packages: - engine/* (8 packages) - rendering/* (8 packages) - physics/* (2 packages) - streaming/* (1 package) - tools/sdk, tools/worker-generator
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "@esengine/asset-system",
|
|
"version": "1.0.0",
|
|
"description": "Asset management system for ES Engine",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:watch": "tsup --watch",
|
|
"clean": "rimraf dist",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"ecs",
|
|
"asset",
|
|
"resource",
|
|
"bundle"
|
|
],
|
|
"author": "yhh",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@esengine/build-config": "workspace:*",
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/engine-core": "workspace:*",
|
|
"rimraf": "^5.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/esengine/esengine.git",
|
|
"directory": "packages/asset-system"
|
|
},
|
|
"dependencies": {
|
|
"@types/pako": "^2.0.4",
|
|
"pako": "^2.1.0"
|
|
},
|
|
"private": true
|
|
}
|