-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "@sophialabs/spectro",
"version": "1.6.9",
"description": "lib para geração de espectrogramas",
"keywords": [
"spectogram",
"ts",
"js",
"sophialabs",
"sophiamind",
"audio",
"filters",
"frequency"
],
"homepage": "https://github.com/IMNascimento/Spectro#readme",
"bugs": {
"url": "https://github.com/IMNascimento/Spectro/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IMNascimento/Spectro.git"
},
"license": "MIT",
"author": "Igor Nascimento",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"build": "microbundle",
"prepublishOnly": "npm run build",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"microbundle": "^0.15.1"
}
}