-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 KB
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
{
"name": "generative-lines",
"description": "Generative Art on HTML Canvas",
"keywords": [
"canvas",
"animations",
"generative art"
],
"repository": {
"type": "git",
"url": "git+https://github.com/barthy-koeln/generative-lines.git"
},
"type": "module",
"license": "MIT",
"version": "0.2.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"build:lib": "unbuild",
"test": "jest"
},
"exports": {
"./config": {
"types": "./dist/lib/config.d.ts",
"import": "./dist/lib/config.mjs",
"default": "./dist/lib/config.mjs"
},
"./lines-canvas": {
"types": "./dist/lib/lines-canvas.d.ts",
"import": "./dist/lib/lines-canvas.mjs",
"default": "./dist/lib/lines-canvas.mjs"
},
"./renderer": {
"types": "./dist/lib/renderer.d.ts",
"import": "./dist/lib/renderer.mjs",
"default": "./dist/lib/renderer.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"dependencies": {
"@tweenjs/tween.js": "^25.0.0"
},
"devDependencies": {
"@astrojs/starlight": "0.38.3",
"@fontsource-variable/red-hat-mono": "^5.2.8",
"@fontsource/ubuntu": "^5.2.8",
"@jest/globals": "^30.3.0",
"@types/jest": "^30.0.0",
"@types/tween.js": "^18.6.1",
"astro": "6.1.5",
"color2k": "^2.0.3",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"sass-embedded": "^1.99.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2",
"unbuild": "^3.6.1"
},
"packageManager": "yarn@4.13.0"
}