-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "@lumieducation/h5p-webcomponents",
"version": "10.0.4",
"description": "A Web Component wrapper around the H5P Editor and Player",
"author": "Sebastian Rettig",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Lumieducation/h5p-webcomponents"
},
"main": "./build/umd/index.js",
"module": "./build/es2015/index.js",
"types": "./build/es2015/index.d.ts",
"scripts": {
"build:watch": "npx tsc --watch",
"build": "npx tsc --build tsconfig.es2015.json && npx tsc --build tsconfig.umd.json",
"clean": "rm -rf build && rm -rf coverage && rm -rf node_modules",
"prepare": "rm -rf build && npm run build"
},
"release": {
"branch": "master"
},
"contributors": [
{
"name": "Sebastian Rettig",
"email": "serettig@posteo.de"
}
],
"dependencies": {
"await-lock": "^2.2.2",
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@lumieducation/h5p-server": "^10.0.4",
"@types/resize-observer-browser": "0.1.11",
"@types/node": "^20",
"typescript": "5.9.3"
},
"files": [
"build",
"CHANGELOG.md",
"README.md"
],
"packageManager": "pnpm@9.0.0"
}