-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 965 Bytes
/
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
{
"type": "module",
"name": "ts-tonnetz",
"version": "0.0.86",
"description": "TypeScript Tonnetz is a set of structures and functions from mathematical music theory",
"keywords": [
"tonnetz",
"algorithmic composition",
"livecoding",
"mathematical music theory"
],
"main": "./src/index.ts",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "vite build",
"log": "tsx ./src/ts-tonnetz.ts",
"repl": "tsx -e \"import('./src/ts-tonnetz.ts').then((tonnetz)=>{global.tonnetz = tonnetz})\" -i"
},
"author": "Edgar Armando Delgado Vega",
"homepage": "https://github.com/edelveart/TypeScriptTonnetz",
"license": "MIT",
"dependencies": {
"typescript": "5.2.2"
},
"devDependencies": {
"tsx": "^4.7.0",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.1"
}
}