-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.66 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ssam",
"version": "0.19.0",
"description": "Creative coding sketch helper",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"demo": "vite ./demo --config vite.demo.config.ts",
"prebuild": "license-checker --exclude 'MIT, MIT OR X11, BSD, ISC' -production",
"build": "tsc --noemit && tsup",
"build-vite": "tsc --noemit && vite build --config vite.build.config.ts",
"preview": "vite preview",
"watch": "tsup --watch",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"author": "Daeinc",
"license": "MIT",
"dependencies": {
"@daeinc/canvas": "^0.15.0",
"@daeinc/dom": "^0.4.1",
"gifenc": "^1.0.3",
"mp4-muxer": "^4.3.3",
"webm-muxer": "^4.0.1"
},
"devDependencies": {
"@daeinc/color": "^0.2.4",
"@daeinc/draw": "^0.5.0",
"@types/node": "^22.4.0",
"@types/p5": "^1.7.6",
"@vitest/coverage-v8": "^2.0.5",
"animejs": "^3.2.2",
"esbuild-plugin-license": "^1.2.3",
"license-checker": "^25.0.1",
"ogl": "^1.0.8",
"p5": "^1.10.0",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-ssam-export": "^0.1.1",
"vite-plugin-ssam-ffmpeg": "^0.2.3",
"vitest": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdaein/ssam.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cdaein"
}
],
"keywords": [
"creative-coding"
],
"bugs": {
"url": "https://github.com/cdaein/ssam/issues"
},
"homepage": "https://github.com/cdaein/ssam#readme"
}