-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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": "@code-not-art/sketch",
"version": "1.0.1",
"description": "Quick start framework for HTML Canvas sketches",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "vite --port 1234",
"build": "rm -rf ./dist && tsc --project tsconfig.package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-not-art/sketch.git"
},
"keywords": [
"canvas",
"generative",
"art",
"TypeScript",
"React",
"ReactJS",
"makecodenotart",
"codenotart",
"codeart"
],
"author": "Jon Eubank <joneubank@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/code-not-art/sketch/issues"
},
"homepage": "https://github.com/code-not-art/sketch#readme",
"dependencies": {
"@code-not-art/core": "^1.0.0",
"jsurl": "^0.1.5",
"lodash": "^4.17.21",
"nice-color-palettes": "^3.0.0",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-control-panel": "^0.10.2",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-helmet": "^6.1.0",
"styled-components": "^6.1.6"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react": "^4.2.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"vite": "^5.0.10"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"arrowFunctionParentheses": "always"
}
}