-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
41
42
43
44
45
{
"name": "max-api-or-nah",
"version": "1.1.3",
"description": "Taking an extremely overengineered approach to wrapping the max-api object",
"main": "./index.cjs",
"module": "index.js",
"types": "./index.d.ts",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
},
"scripts": {
"test": "vitest run",
"coverage": "vitest run --coverage",
"build": "node ./src/generate.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twhiston/max-api-or-nah.git"
},
"keywords": [
"cyling74",
"maxmsp",
"max",
"node.script"
],
"author": "Tom Whiston",
"license": "MIT",
"bugs": {
"url": "https://github.com/twhiston/max-api-or-nah/issues"
},
"homepage": "https://github.com/twhiston/max-api-or-nah#readme",
"devDependencies": {
"@babel/parser": "^7.25.6",
"@babel/traverse": "^7.25.6",
"@types/max-api": "^2.0.3",
"@vitest/coverage-v8": "^2.1.3",
"handlebars": "^4.7.8",
"node_modules-path": "^2.0.8",
"vitest": "^2.1.3"
}
}