forked from tapioca24/p5.capture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "p5.capture",
"version": "1.6.1",
"description": "super easy recording for p5.js animations 📸",
"keywords": [
"sketch",
"p5js",
"p5",
"p5.js",
"processing",
"art",
"creative",
"creative-coding"
],
"homepage": "https://github.com/tapioca24/p5.capture",
"repository": {
"type": "git",
"url": "git+https://github.com/tapioca24/p5.capture.git"
},
"license": "MIT",
"author": "tapioca24",
"browser": "dist/p5.capture.umd.js",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"setup": "playwright install",
"prepublishOnly": "pnpm build && pnpm test:unit run && pnpm test:e2e:skipbuild",
"test:e2e": "playwright test",
"test:e2e:skipbuild": "SKIP_BUILD=true pnpm test:e2e",
"test:unit": "vitest",
"update:readme": "node scripts/update-readme.js"
},
"dependencies": {
"events": "3.3.0",
"fflate": "0.8.2",
"gif.js": "0.2.0",
"h264-mp4-encoder": "1.0.12",
"webm-writer": "1.0.0"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@types/events": "3.0.3",
"@types/gif.js": "0.2.5",
"@types/p5": "1.7.7",
"happy-dom": "20.8.9",
"prettier": "3.8.1",
"strict-event-emitter-types": "2.0.0",
"typescript": "6.0.2",
"vite": "8.0.6",
"vitest": "4.1.2"
}
}