-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 KB
/
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
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
{
"name": "midi-kbd",
"version": "1.1.1",
"license": "MIT",
"author": "John Hooks <[email protected]> (https://johnhooks.io/)",
"homepage": "https://github.com/johnhooks/midi-kbd#readme",
"repository": {
"type": "git",
"url": "https://github.com/johnhooks/midi-kbd.git"
},
"bugs": "https://github.com/johnhooks/midi-kbd/issues",
"type": "module",
"sideEffects": false,
"exports": "./dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "./scripts/build-pkg.js",
"build:all": "yarn build && yarn build:docs",
"build:docs": "./scripts/build-docs.js",
"build:esm": "./scripts/esm.js",
"build:tsc": "./scripts/compile.js",
"build:types": "./scripts/build-types.js",
"check": "tsc --build ./src && tsc --project ./tests",
"clean": "rimraf ./{dist,temp}",
"clean:all": "yarn clean && yarn clean:tsc",
"clean:tsc": "rimraf ./build",
"lint": "eslint --ext .js,.ts .",
"prepare": "husky install",
"release": "shipjs prepare",
"test": "vitest run",
"website:dev": "yarn --cwd website dev",
"website:build": "yarn --cwd website build",
"website:preview": "yarn --cwd website preview"
},
"dependencies": {
"lit-html": "2.6.1",
"rxjs": "7.8.0",
"webmidi": "3.1.2"
},
"devDependencies": {
"@microsoft/api-documenter": "7.19.28",
"@microsoft/api-extractor": "7.33.8",
"@testing-library/dom": "8.20.0",
"@testing-library/jest-dom": "5.16.5",
"@types/node": "18.11.18",
"@types/testing-library__jest-dom": "5.14.5",
"@types/webmidi": "2.0.6",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-testing-library": "5.9.1",
"husky": "8.0.3",
"jsdom": "^21.0.0",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"rimraf": "4.1.1",
"shipjs": "0.25.1",
"ts-node": "10.9.1",
"tslib": "2.4.1",
"typescript": "4.9.4",
"vite": "4.0.4",
"vitest": "0.27.2"
}
}