-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
67
68
69
70
71
{
"name": "ascii-animator",
"version": "0.1.0",
"description": "An open-source tool for creating plain text animations in the style of ASCII art",
"keywords": [
"ascii",
"animator",
"animation",
"art",
"ascii animator",
"ascii animation",
"ascii art",
"ascii art generator",
"ascii tracer",
"image tracer",
"image to ascii",
"trace image to text",
"trace video to text",
"draw ascii",
"sketch ascii from video",
"sketch ascii from image",
"sketch text from image trace",
"plain text",
"ascii art"
],
"homepage": "https://ascii-animator.com",
"bugs": {
"url": "https://github.com/bradysheridan/ascii-animator/issues",
"email": "dev@bradysheridan.com"
},
"main": "index.js",
"scripts": {
"dev": "next dev -p 1234",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sass": "sass --watch ./src/styles/main.scss:./src/styles/main.css",
"print": "arduino-cli compile -b arduino:avr:uno arduino/sketches/print --output-dir arduino/sketches/print --upload --port /dev/cu.usbmodem1401"
},
"author": {
"name": "Brady Sheridan",
"email": "dev@bradysheridan.com",
"url": "https://bradysheridan.com/"
},
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/devq"
},
"peerDependencies": {
"immer": "^9.0.21"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"file-saver": "^2.0.5",
"html-to-image": "^1.11.11",
"jszip": "^3.10.1",
"next": "13.4.4",
"rangy": "^1.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-p5": "^1.3.35",
"remixicon": "^3.3.0",
"trace-ascii-image": "^1.0.2",
"use-immer": "^0.9.0"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7"
}
}