@affectively/entrainment-audio 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/LICENSE +21 -0
- package/README.md +176 -0
- package/dist/index.d.mts +589 -0
- package/dist/index.d.ts +589 -0
- package/dist/index.js +1198 -0
- package/dist/index.mjs +1146 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@affectively/entrainment-audio",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Brainwave entrainment audio generators: binaural beats, isochronic tones, monaural beats, pink noise, and brown noise using Web Audio API.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"README.md",
|
|
19
|
+
"CHANGELOG.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
23
|
+
"prepublishOnly": "npm run build",
|
|
24
|
+
"test": "bun test"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"binaural-beats",
|
|
28
|
+
"isochronic-tones",
|
|
29
|
+
"monaural-beats",
|
|
30
|
+
"brainwave",
|
|
31
|
+
"entrainment",
|
|
32
|
+
"meditation",
|
|
33
|
+
"audio",
|
|
34
|
+
"web-audio-api",
|
|
35
|
+
"relaxation",
|
|
36
|
+
"focus",
|
|
37
|
+
"sleep",
|
|
38
|
+
"pink-noise",
|
|
39
|
+
"brown-noise",
|
|
40
|
+
"wellness"
|
|
41
|
+
],
|
|
42
|
+
"author": "AFFECTIVELY <opensource@affectively.ai>",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/affectively-ai/entrainment-audio.git"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/affectively-ai/entrainment-audio/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/affectively-ai/entrainment-audio#readme",
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^22.0.0",
|
|
54
|
+
"tsup": "^8.0.0",
|
|
55
|
+
"typescript": "^5.9.0"
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
}
|
|
60
|
+
}
|