forked from chrisweb/web-audio-api-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.2 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
56
57
58
59
{
"name": "web-audio-api-player",
"version": "5.1.0",
"description": "web audio api player",
"keywords": [
"web",
"audio",
"api",
"javascript",
"typescript",
"player",
"promises",
"event-driven",
"play",
"sound",
"playlist"
],
"homepage": "https://github.com/br-data/web-audio-api-player#readme",
"bugs": {
"url": "https://github.com/br-data/web-audio-api-player/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:br-data/web-audio-api-player.git"
},
"license": "MIT",
"author": "chrisweb (https://chris.lu)",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "rollup -c ./scripts/dist.js",
"build:pre": "gcloud artifacts print-settings npm --repository=npm-public --location=us-central1 > .npmrc",
"build:setup": "touch .npmrc && npm config set @brdata:registry https://europe-west3-npm.pkg.dev/brdata-dev/brdata/ --userconfig .npmrc && yarn run artifactregistry-login",
"build:package": "yarn run build:setup && yarn run build",
"publish:patch": "yarn run build:package && npm version patch --no-git-tag-version --no-commit-hooks && npm publish",
"publish:minor": "yarn run build:package && npm version minor --no-git-tag-version --no-commit-hooks && npm publish",
"publish:major": "yarn run build:package && npm version major --no-git-tag-version --no-commit-hooks && npm publish",
"artifactregistry-login": "npx google-artifactregistry-auth",
"lint": "npx eslint src/**/* examples/simple-player/client/**/* examples/simple-player/server/**/*",
"watch": "rollup -cw ./scripts/dist.js"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.3",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"eslint": "8.48.0",
"eslint-plugin-import": "2.28.1",
"rollup": "3.28.1",
"rollup-plugin-typescript2": "0.35.0",
"typescript": "5.2.2"
},
"type": "module"
}