-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "setlist",
"version": "0.1.0",
"description": "DJ setlist sequencer for dance music — harmonic + tempo compatibility ordering using the Camelot wheel",
"keywords": [
"bpm",
"camelot",
"dance-music",
"dj",
"harmonic-mixing",
"setlist"
],
"homepage": "https://github.com/andrewbarba/setlist#readme",
"license": "MIT",
"author": "Andrew Barba <barba@hey.com>",
"repository": {
"type": "git",
"url": "https://github.com/andrewbarba/setlist.git"
},
"bin": {
"setlist": "./dist/bin/setlist.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsgo",
"djay": "node scripts/organize-djay-playlist.ts",
"djay:export": "node scripts/export-djay-playlist.ts",
"djay:sync": "node scripts/reorder-djay-playlist.ts",
"prepack": "deno task build",
"setlist": "node bin/setlist.ts",
"typecheck": "tsc --noEmit",
"test": "node --test 'tests/*.test.ts'"
},
"devDependencies": {
"@types/node": "^24.12.4",
"@typescript/native-preview": "^7.0.0-dev.20260527.2"
},
"engines": {
"node": ">=23.6.0"
}
}