* 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
33 lines
700 B
JSON
33 lines
700 B
JSON
{
|
|
"name": "@esengine/rapier2d",
|
|
"version": "0.14.0",
|
|
"description": "Rapier2D physics engine with dynamic WASM loading support",
|
|
"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"
|
|
},
|
|
"./pkg/*": "./pkg/*"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"pkg/*.wasm"
|
|
],
|
|
"scripts": {
|
|
"gen:src": "node scripts/gen-src.mjs",
|
|
"build": "pnpm gen:src && tsup",
|
|
"clean": "rimraf dist src"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"rimraf": "^5.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"private": true
|
|
}
|