-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "@alugha/player",
"version": "0.3.3",
"description": "A lightweight SDK for embedding and controlling the alugha player.",
"homepage": "https://alugha.github.io/player/",
"repository": "https://github.com/alugha/player",
"bugs": "https://github.com/alugha/player/issues",
"author": "Alugha GmbH <[email protected]> (https://alugha.com/)",
"maintainers": [
"Niklas Korz <[email protected]>"
],
"license": "MIT",
"files": [
"lib",
"cjs"
],
"main": "cjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./cjs/index.js"
},
"./lib/receiver": {
"import": "./lib/receiver.js",
"require": "./cjs/receiver.js"
}
},
"scripts": {
"precommit": "lint-staged",
"prepare": "yarn compile",
"lint": "eslint --ext .json,.js,.ts .",
"precompile": "rimraf lib cjs",
"compile": "yarn compile:esm && yarn compile:cjs",
"compile:esm": "tsc --project tsconfig.json",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"example:build": "yarn compile && rimraf example/lib && cp -r lib example/lib",
"example": "yarn example:build && serve example",
"docs:build": "typedoc src",
"docs": "yarn docs:build && serve docs"
},
"lint-staged": {
"*.{js,ts,json}": [
"eslint --ext .json,.js,.ts --fix",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"serve": "^14.2.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
}
}