-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
82 lines (82 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@pixi/sound",
"version": "6.0.1",
"description": "WebAudio API playback library with filters",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"test": "xs test",
"clean": "xs clean",
"start": "xs serve",
"watch": "xs watch",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"types": "xs types",
"build": "xs build",
"docs": "xs docs",
"deploy:ci": "xs build,docs",
"postdeploy:ci": "mkdirp deploy && copyfiles \"{dist,examples,docs}/**\" deploy && copyfiles -f dist/* deploy",
"deploy": "xs deploy",
"release": "xs release"
},
"extensionConfig": {
"lint": [
"test",
"src",
"examples/client"
],
"bundleSource": "src/browser.ts",
"bundleExports": "default",
"docsName": "PixiJS Sound",
"docsCopyright": "PIXI Copyright © 2017 - 2021 Matt Karl.",
"docsGoogleAnalytics": "UA-103772589-1",
"docsTitle": "PixiJS Sound API Documentation",
"docsDescription": "Documentation for PixiJS Sound library",
"docsKeyword": "docs, documentation, pixi, pixijs, webaudio, html5, audio, javascript, jsdoc"
},
"engines": {
"node": ">=16",
"yarn": "please-use-npm",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/sound.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"lib/",
"global.d.ts"
],
"keywords": [
"webaudio",
"sound",
"pixi"
],
"author": "Matt Karl @bigtimebuddy",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs/sound/issues"
},
"homepage": "https://github.com/pixijs/sound#readme",
"devDependencies": {
"@pixi/extension-scripts": "^2.0.0",
"copyfiles": "^2.4.1",
"mkdirp": "^1.0.4",
"pixi.js": "^8.0.0"
},
"peerDependencies": {
"pixi.js": "^8.0.0"
}
}