forked from danigb/smplr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 KB
/
package.json
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
{
"name": "smplr",
"version": "0.11.3",
"homepage": "https://github.com/danigb/smplr#readme",
"description": "A Sampled collection of instruments",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danigb/smplr.git"
},
"keywords": [
"sampler",
"web",
"audio",
"instrument"
],
"author": "danigb",
"license": "MIT",
"bugs": {
"url": "https://github.com/danigb/smplr/issues"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@types/audioworklet": "^0.0.50",
"@types/jest": "^29.5.8",
"jest": "^29.4.1",
"prettier": "^3.1.0",
"ts-jest": "^29.0.5",
"tsup": "^7.3.0",
"turbo": "^1.10.16",
"typedoc": "^0.25.3"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --sourcemap --dts --format esm,cjs",
"build:worklet:reverb": "esbuild src/reverb/worklet-processor.ts --bundle --minify > src/reverb/processor.min.js",
"test": "yarn test:unit && yarn test:types",
"test:unit": "jest",
"test:types": "tsc --noEmit"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"preset": "ts-jest"
}
}