-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"$schema": "https://json.schemastore.org/package",
"name": "u-he-preset-randomizer",
"version": "1.0.10",
"description": "Create random u-he synth presets through randomization and merging of your existing presets.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"u-he-preset-randomizer": "./dist/cli.js"
},
"type": "module",
"scripts": {
"start": "tsx src/cli.ts",
"build-ts": "tsc",
"clean": "rimraf dist/",
"build": "npm run build-ts",
"lint": "eslint .",
"test": "npm run lint && npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fannon/u-he-preset-randomizer.git"
},
"keywords": [
"u-he",
"synth",
"random",
"randomization",
"presets",
"presets"
],
"author": "Simon Heimler",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fannon/u-he-preset-randomizer/issues"
},
"files": [
"README.md",
"package.json",
"src/**/*",
"dist/**/*"
],
"homepage": "https://github.com/Fannon/u-he-preset-randomizer#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"eslint": "^9.17.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"chalk": "^5.4.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.23",
"inquirer-autocomplete-prompt": "^3.0.1",
"unique-names-generator": "^4.7.1",
"yargs": "^17.7.2"
}
}