-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "p5-svelte",
"description": "A component for easily using p5 sketches in Svelte. Allows using Svelte's reactivity system in p5.",
"version": "3.1.2",
"keywords": [
"svelte",
"svelte-component",
"p5",
"p5.js",
"processing",
"components",
"generative-art",
"creative-coding"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tonyketcham/p5-svelte.git"
},
"author": "Tony Ketcham <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tonyketcham/p5-svelte/issues"
},
"homepage": "https://p5-svelte.netlify.app/",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. ."
},
"dependencies": {
"p5": "^1.4.1"
},
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0-next.29",
"@sveltejs/kit": "1.0.0-next.304",
"@types/p5": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@zerodevx/svelte-toast": "^0.7.1",
"autoprefixer": "^10.4.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-svelte3": "^3.4.1",
"highlight.js": "^11.4.0",
"highlightjs-svelte": "^1.0.6",
"postcss": "^8.4.12",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"svelte": "^3.46.4",
"svelte-check": "^2.4.5",
"svelte-highlight": "^5.2.2",
"svelte-preprocess": "^4.10.4",
"svelte-range-slider-pips": "^2.0.3",
"svelte2tsx": "^0.5.6",
"tailwindcss": "^3.0.23",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"p5": "^1.4.0",
"@types/p5": "^1.4.2"
},
"type": "module",
"svelte": "index.js"
}