forked from grumdrig/jsfxr
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.22 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
{
"name": "jsfxr",
"version": "1.4.0",
"description": "8-bit sound effects generator based on sfxr",
"main": "sfxr.js",
"module": "sfxr.mjs",
"exports": {
".": {
"import": "./sfxr.mjs",
"require": "./sfxr.js",
"default": "./sfxr.js"
},
"./riffwave": {
"import": "./riffwave.mjs",
"require": "./riffwave.js"
}
},
"homepage": "https://github.com/chr15m/jsfxr",
"repository": {
"type": "git",
"url": "https://github.com/chr15m/jsfxr.git",
"web": "https://github.com/chr15m/jsfxr"
},
"bugs": {
"url": "https://github.com/chr15m/jsfxr/issues/"
},
"keywords": [
"sfxr",
"jsfxr",
"8-bit",
"sfx",
"sound effects",
"synth",
"8bit",
"retro",
"chiptune",
"audio",
"music",
"sound",
"game development"
],
"devDependencies": {
"@playwright/test": "^1.57.0",
"live-server": "1.2.1",
"tape": "5.6.1"
},
"scripts": {
"serve": "live-server",
"test": "./tests.js",
"test:e2e": "playwright test"
},
"files": [
"sfxr.js",
"sfxr.mjs",
"riffwave.js",
"riffwave.mjs",
"UNLICENSE",
"README.md",
"sfxr-to-wav"
],
"bin": {
"sfxr-to-wav": "./sfxr-to-wav"
}
}