-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@particlr/runtime",
"version": "0.5.1",
"description": "Framework-agnostic particle simulation core + Pixi v8 and Pixi v7 adapters for the .prt format.",
"license": "MIT",
"type": "module",
"homepage": "https://particlr.com",
"repository": {
"type": "git",
"url": "git+https://github.com/brac/particlr-runtime.git"
},
"bugs": {
"url": "https://github.com/brac/particlr-runtime/issues"
},
"keywords": [
"particles",
"particle-system",
"particle-effects",
"vfx",
"pixijs",
"pixi",
"game-development",
"gamedev",
"2d",
"webgl",
"webgpu",
"animation"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./pixi": {
"types": "./dist/pixi/index.d.ts",
"import": "./dist/pixi/index.js"
},
"./pixi7": {
"types": "./dist/pixi7/index.d.ts",
"import": "./dist/pixi7/index.js"
},
"./particle.schema.json": "./dist/particle.schema.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.pixi.json && tsc --noEmit -p tsconfig.pixi7.json && tsc --noEmit -p tsconfig.scripts.json",
"test": "vitest run",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.build-pixi7.json && node scripts/copy-schema.mjs",
"gen-schema": "tsx scripts/gen-schema.ts",
"size": "node scripts/check-size.mjs"
},
"peerDependencies": {
"pixi.js": ">=7.2.0 <9"
},
"peerDependenciesMeta": {
"pixi.js": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22",
"esbuild": "^0.24.2",
"jsdom": "^26",
"pixi.js": "8.19.0",
"pixi7": "npm:pixi.js@7.4.3",
"ts-json-schema-generator": "^2.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^3.0.5"
}
}