-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 852 Bytes
/
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
{
"name": "@mebble/medley",
"version": "0.1.1",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:watch": "vitest",
"test": "vitest run",
"docs": "typedoc lib/index.ts --out ./docs"
},
"devDependencies": {
"ts-mockito": "^2.6.1",
"typedoc": "^0.24.7",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mebble/medley.git"
},
"license": "MIT"
}