-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.24 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.24 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@pixi/sound",
"version": "4.3.2",
"description": "WebAudio API playback library with filters-Sparkol fork",
"source": "src/index.ts",
"sourceBundle": "src/browser.ts",
"main": "dist/pixi-sound.cjs.js",
"module": "dist/pixi-sound.esm.mjs",
"bundle": "dist/pixi-sound.js",
"types": "dist/pixi-sound.d.ts",
"namespace": "PIXI.sound",
"exports": {
".": {
"import": "./dist/pixi-sound.esm.mjs",
"require": "./dist/pixi-sound.cjs.js",
"types": "./dist/pixi-sound.d.ts"
}
},
"scripts": {
"test": "floss -p test --require ts-node/register -- --autoplay-policy=no-user-gesture-required",
"test:debug": "floss -p test --debug --require ts-node/register -- --autoplay-policy=no-user-gesture-required",
"coverage": "nyc floss -p test --require ts-node/register -- --autoplay-policy=no-user-gesture-required",
"clean": "rimraf dist/**",
"start": "run-s watch",
"watch": "rollup -c config/rollup.js --environment DEV --watch",
"lint": "eslint --ext .js --ext .ts test scripts src examples/client --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"types": "tsc -p tsconfig.json --noEmit",
"prebuild": "run-s clean lint types",
"build": "rollup -c config/rollup.js",
"postbuild": "run-s build:types bundle:types fix:types",
"fix:types": "ts-node scripts/injectGlobalMixins.ts",
"build:prod": "cross-env NODE_ENV=production run-s build",
"prebuild:types": "rimraf .types_output/**",
"build:types": "tsc --declaration --emitDeclarationOnly --skipLibCheck --outDir .types_output",
"bundle:types": "api-extractor run --local",
"predocs": "rimraf docs/**",
"docs": "webdoc -c config/webdoc.json -r README.md",
"predeploy": "run-s docs",
"predeploy:ci": "rimraf deploy/**",
"deploy:ci": "mkdirp deploy && copyfiles \"{dist,examples,docs,coverage}/**\" deploy && copyfiles -f dist/pixi-sound.js* deploy",
"deploy": "gh-pages -d . -s \"{dist,examples,docs}/**\"",
"examples": "http-server . -a localhost -o",
"publish:patch": "npm version patch && run-s publish:skip",
"publish:minor": "npm version minor && run-s publish:skip",
"publish:major": "npm version major && run-s publish:skip",
"publish:skip": "run-s build:prod test && npm publish",
"postpublish": "run-s deploy && git push && git push --tags",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"engines": {
"node": ">=12",
"yarn": "please-use-npm",
"npm": ">=7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/sound.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"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",
"pre-commit": [
"lint",
"types"
],
"clean-package": {
"indent": 2,
"remove": [
"clean-package",
"scripts",
"engines",
"pre-commit",
"devDependencies",
"eslintConfig",
"source",
"sourceBundle"
]
},
"devDependencies": {
"@microsoft/api-extractor": "^7.19.3",
"@pixi/eslint-config": "^3.0.0",
"@pixi/webdoc-template": "^1.5.3",
"@rollup/plugin-typescript": "^8.0.0",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "17.0.31",
"@types/offscreencanvas": "^2019.6.4",
"@webdoc/cli": "^1.5.5",
"chai": "^4.2.0",
"clean-package": "^1.0.1",
"copyfiles": "^2.1.0",
"cross-env": "7.0.3",
"electron": "^12.0.0",
"eslint": "8.31.0",
"floss": "^5.0.0",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"jsdoc": "^3.6.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.0",
"pixi.js": "6.5.9",
"pre-commit": "^1.2.2",
"rimraf": "2.6.3",
"rollup": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"ts-node": "10.9.1",
"typescript": "4.6.4"
},
"peerDependencies": {
"@pixi/core": "6.5.9",
"@pixi/loaders": "6.5.9",
"@pixi/ticker": "6.5.9",
"@pixi/utils": "6.5.9"
},
"eslintConfig": {
"extends": [
"@pixi/eslint-config"
]
}
}