-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.33 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
55
{
"name": "smplr",
"version": "0.16.1",
"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.60",
"@types/jest": "^29.5.12",
"jest": "^29.4.1",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typedoc": "^0.26.8"
},
"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": "npm run test:unit && npm run test:types",
"test:unit": "jest",
"test:types": "tsc --noEmit",
"publish": "npm test && npm run build && changeset publish"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"preset": "ts-jest"
},
"packageManager": "npm@10.2.3"
}