-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "node-matlab",
"version": "2.0.0",
"description": "Run MATLAB commands, scripts, and functions from Node.js with TypeScript support",
"homepage": "https://github.com/zeybek/node-matlab#README",
"bugs": {
"url": "https://github.com/zeybek/node-matlab/issues",
"email": "me@zeybek.dev"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"engines": {
"node": ">=18"
},
"os": ["darwin", "linux", "win32"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"check": "biome check .",
"check:fix": "biome check . --write",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format . --write",
"format:check": "biome format .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm build",
"clean": "rm -rf dist",
"example": "pnpm --filter node-matlab-examples example",
"examples:install": "pnpm --filter node-matlab-examples install",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "pnpm build && pnpm changeset:publish"
},
"keywords": [
"matlab",
"matrix",
"data",
"analytic",
"signal",
"processing",
"algebra",
"scientific",
"computing",
"engineering",
"simulation",
"visualization",
"typescript"
],
"author": "Ahmet Zeybek <me@zeybek.dev> (https://zeybek.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zeybek/node-matlab.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^20.10.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^1.0.4"
},
"packageManager": "pnpm@8.12.0"
}