-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
{
"name": "@code-not-art/sketch",
"version": "2.0.0-beta.2",
"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",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run"
},
"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 <[email protected]>",
"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": "^2.0.0-beta.1",
"jsurl": "^0.1.5",
"lodash": "^4.17.21",
"nice-color-palettes": "^3.0.0",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primereact": "^10.8.5",
"query-string": "^7.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"react-helmet": "^6.1.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.10",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^1.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^1.6.0"
}
}