-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
43
44
{
"name": "@combomash/engine",
"description": "A TypeScript engine for constructing canvas-based render pipelines, offering a framework for rendering realtime or frame based outputs.",
"version": "0.7.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"javascript",
"typescript",
"rendering",
"generative",
"realtime",
"artwork",
"pipeline"
],
"author": "Owen Moore | OWMO Studio LTD <[email protected]>",
"scripts": {
"dev": "tsup --watch",
"dev-test": "jest --watchAll --verbose",
"build": "jest && tsup --minify",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/combomash/engine.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/combomash/engine/issues"
},
"homepage": "https://github.com/combomash/engine#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
}
}