-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.35 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.35 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
{
"name": "web-audio-samples",
"version": "3.3.0",
"description": "A collection of projects, examples and resources for Web Audio API. Curated by the Chrome Web Audio team.",
"main": "index.js",
"scripts": {
"build": "run-s clean build:css build:eleventy",
"build:css": "npx @tailwindcss/cli -i ./src/styles/styles.css -o ./_site/styles.css --minify",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"clean": "rimraf _site",
"start": "run-p start:css start:eleventy",
"start:css": "npx @tailwindcss/cli -i ./src/styles/styles.css -o ./_site/styles.css --watch",
"start:eleventy": "eleventy --serve",
"format": "run-p format:eslint",
"format:eslint": "npx eslint --fix _site/audio-worklet/**/*.js",
"test": "echo 'Test disabled due to issue #426'",
"test:server": "npx http-server",
"test:live": "npx http-server ./src/tests/playwright/pages/",
"rainfly": "cd src/rainfly && npm run build"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-navigation": "^1.0.5",
"@playwright/test": "^1.58.1",
"@tailwindcss/cli": "^4.1.18",
"eslint": "^10.1.0",
"eslint-config-google": "^0.14.0",
"js-yaml": "^4.1.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@types/node": "^25.2.0"
}
}