-
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.43 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.43 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": "max-ts-bundler",
"version": "1.0.0",
"description": "TypeScript bundler for Max/MSP and Max4Live Projects into [js] and [jsui] objects.",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typescript",
"max",
"msp",
"max4live",
"ableton",
"javascript",
"babel",
"rollup"
],
"author": "Rayce Stipanovich",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-regenerator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/runtime-corejs2": "^7.19.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-eslint": "^8.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/babel-core": "^6.25.7",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/dotenv": "^8.2.0",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.1",
"@types/node": "^18.7.18",
"@types/ora": "^3.2.0",
"@types/rollup": "^0.54.0",
"chalk": "^5.0.1",
"commander": "^9.4.0",
"dotenv": "^16.0.2",
"gradient-string": "^2.0.2",
"inquirer": "^9.1.2",
"ora": "^6.1.2",
"rollup": "^2.79.0",
"typescript": "^4.8.3"
},
"dependencies": {}
}