-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.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
{
"name": "@midival/core",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"license": "MIT",
"exports": {
".": "./dist/index.js",
"./mpe": "./dist/mpe.js"
},
"homepage": "https://midival.github.io",
"repository": {
"type": "git",
"url": "git@github.com:midival/core.git"
},
"author": {
"name": "Kacper Kula",
"url": "https://hypersphere.blog"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"tsup": "^8.4.0",
"typedoc": "^0.28.3",
"typescript": "^5.8.3",
"@types/webmidi": "^2.1.0"
},
"scripts": {
"build": "tsup src/index.ts src/mpe.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc",
"test": "jest",
"prettier": "prettier --check \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc",
"deploy": "gh-pages -d docs"
},
"dependencies": {
"@hypersphere/omnibus": "^0.1.6"
},
"publishConfig": {
"access": "public"
}
}