-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1008 Bytes
/
package.json
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
{
"name": "librender",
"version": "0.2.2",
"description": "",
"author": "Elric Neumann <[email protected]> (https://elric.pl)",
"homepage": "https://github.com/elricmann/render",
"repository": "github:elricmann/render",
"license": "MIT",
"keywords": [
"javascript",
"typescript",
"render",
"UI",
"optimizations",
"frame-rate",
"scheduling",
"batching",
"bytecode",
"virtual-dom",
"virtual-machine",
"webassembly"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host",
"build": "tsc && vite build",
"test": "echo y"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@types/node": "^22.7.4",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-babel": "^1.2.0"
}
}