-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) 路 1.49 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) 路 1.49 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
{
"name": "rapid-render",
"private": false,
"version": "1.0.15",
"type": "module",
"description": "A high-performance lightweight WebGL 2D renderer for browser games.",
"repository": "https://github.com/Nightre/Rapid.js",
"homepage": "https://nightre.github.io/Rapid.js/",
"bugs": "https://github.com/Nightre/Rapid.js/issues",
"keywords": [
"2d",
"webgl",
"webgl2",
"renderer",
"rendering-engine",
"game-rendering",
"browser-games",
"sprite-batching",
"particles",
"shaders",
"typescript"
],
"files": [
"dist"
],
"sideEffects": false,
"license": "MIT",
"main": "./dist/rapid-render.umd.cjs",
"module": "./dist/rapid-render.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/rapid-render.js",
"require": "./dist/rapid-render.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:test-internal": "vite build --config vite.test.config.ts",
"test": "npm run build && node --test",
"build:docs": "vite build --config vite.docs.config.ts",
"docs": "typedoc",
"example:dev": "vite --config example/vite.config.ts",
"example:build": "vite build --config example/vite.config.ts"
},
"devDependencies": {
"typedoc": "^0.28.17",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"@types/stats.js": "^0.17.4",
"highlight.js": "^11.11.1",
"stats.js": "^0.17.0",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {}
}