-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.52 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
66
67
68
{
"name": "pixeltone.js",
"version": "1.0.7",
"description": "An auditory creation tool that turns your images into sounds. ",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"image",
"audio",
"image-to-music",
"generative",
"music",
"auditory-creation",
"sound-generator",
"rgb-to-frequency",
"image-processing",
"creative-coding",
"pixel-art",
"sound-art",
"frequency-mapping",
"audiovisual",
"javascript-library",
"npm-package",
"generative-art",
"interactive-media",
"music-visualization",
"typescript",
"typescript-library",
"typescript-support"
],
"author": "M. Ergin Turk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RecursiveVoid/pixeltonejs.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.9.0",
"rollup": "^4.27.4",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"canvas": "^2.11.2",
"eventemitter3": "^5.0.1",
"wavefile": "^11.0.0"
},
"type": "module",
"files": [
"dist/"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
}
}