-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "string_art",
"version": "1.0.0",
"description": "String Art Studio",
"source": "./src/index.html",
"scripts": {
"dev": "parcel",
"build": "parcel build",
"postbuild": "workbox generateSW workbox-config.cjs",
"test": "jest",
"test:watch": "jest --watch",
"performance": "npx tsx src/scripts/performance/patterns_perf.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoxigen/string_art.git"
},
"type": "module",
"keywords": [
"javascript",
"canvas",
"art",
"string",
"art",
"craft",
"strings",
"visualization"
],
"author": "Yossi Kolesnicov",
"license": "ISC",
"bugs": {
"url": "https://github.com/yoxigen/string_art/issues"
},
"homepage": "https://github.com/yoxigen/string_art#readme",
"devDependencies": {
"@parcel/packager-raw-url": "^2.2.0",
"@parcel/transformer-inline-string": "^2.15.4",
"@parcel/transformer-webmanifest": "^2.2.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"parcel": "2.15.4",
"prettier": "2.4.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"workbox-cli": "^6.4.2"
},
"targets": {
"default": {
"distDir": "./dist",
"publicUrl": "./"
}
},
"dependencies": {
"posthog-js": "^1.284.0",
"scheduler-polyfill": "^1.3.0"
}
}