-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "sounts",
"version": "0.8.1",
"description": "A tiny helper library for working with the web audio API written in TypeScript.",
"keywords": [
"TypeScript",
"audio",
"web audio",
"webaudio",
"spatialization",
"positional",
"html5",
"Game"
],
"homepage": "https://lusito.github.io/sounts/",
"bugs": {
"url": "https://github.com/Lusito/sounts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Lusito/sounts.git"
},
"license": "Zlib",
"author": "Santo Pfingsten",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"build:api": "rimraf dist-internal/api && typedoc src",
"build:docs": "rimraf dist-internal && npm run build:api && npm run build:example:prod && mono-docs . build",
"build:example:base": "tsc && vite build example --outDir ../dist-internal/example --emptyOutDir",
"build:example:dev": "npm run build:example:base -- --base /example/",
"build:example:prod": "npm run build:example:base -- --base /sounts/example/",
"lint": "mono-lint",
"lint:fix": "mono-lint --fix",
"release": "mono-release",
"serve:docs": "rimraf dist-internal && npm run build:api && npm run build:example:dev && mono-docs . serve",
"start": "vite example",
"start:docs": "nodemon --ignore node_modules --ignore dist --ignore \"dist-internal\" -e ts,tsx,md,scss,png,webp --exec \"npm run serve:docs\""
},
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@lusito/eslint-config": "^3.1.0",
"@lusito/mono": "^0.15.1",
"@lusito/mono-docs": "^0.16.0",
"@lusito/prettier-config": "^3.1.0",
"@lusito/tsconfig": "^1.0.2",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsdoc": "^48.2.7",
"nodemon": "^3.1.2",
"rimraf": "^5.0.7",
"sort-package-json": "^2.10.0",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.27",
"typescript": "5.4.5",
"vite": "^5.2.12"
},
"volta": {
"node": "20.13.1"
},
"monoLint": {
"lintMarkdownLinks": {
"warnOnlyPatterns": [
"^https:\\/\\/lusito\\.github\\.io\\/sounts\\/"
]
}
}
}