-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "@dougflip/metronome",
"version": "0.0.3",
"author": "dougflip",
"license": "MIT",
"description": "Headless metronome with events",
"main": "dist/index.js",
"files": [
"dist"
],
"type": "module",
"homepage": "https://github.com/dougflip/metronome",
"scripts": {
"build": "tsc",
"check": "concurrently \"npm:build\" \"npm:lint\" \"npm:compile\" \"npm:format:check\" \"npm:check:exports\"",
"check:exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"compile": "tsc --noEmit",
"pree2e": "npm run build",
"e2e": "playwright test",
"e2e:server": "http-server . --port 8080",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"lint": "oxlint ./src",
"prepublishOnly": "npm run check"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@playwright/test": "^1.51.1",
"@types/node": "^25.0.3",
"concurrently": "^9.1.2",
"http-server": "^14.1.1",
"oxlint": "^1.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"keywords": [
"audio",
"metronome"
]
}