-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 KB
/
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
{
"name": "@adamsarek/opencanvas",
"version": "0.0.9",
"description": "Reusable performance focused canvas built in TypeScript and on top of the latest web tech.",
"keywords": [
"opencanvas",
"open-source",
"canvas",
"offscreencanvas",
"canvas2d",
"webgl",
"webgl2",
"webgpu",
"webworker",
"typescript"
],
"author": "Adam Šárek",
"license": "GPL-3.0",
"homepage": "https://github.com/adamsarek/opencanvas#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adamsarek/opencanvas.git"
},
"bugs": {
"url": "https://github.com/adamsarek/opencanvas/issues"
},
"main": "dist/opencanvas.js",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm install && esbuild \"src/**/*\" --bundle --format=esm --minify --sourcemap --outdir=dist --log-level=debug",
"watch": "npm install && esbuild \"src/**/*\" --bundle --format=esm --minify --sourcemap --outdir=dist --log-level=debug --watch"
},
"dependencies": {},
"devDependencies": {
"esbuild": "^0.24.0",
"typescript": "^5.7.2"
}
}