-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "@sctg/libwebm-js",
"version": "1.0.6",
"description": "WebAssembly bindings for libwebm",
"type": "module",
"main": "dist/wrapper-worker.js",
"types": "dist/libwebm.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "emcmake cmake . && emmake make",
"clean": "rm -rf build dist Makefile CMakeFiles CMakeCache.txt cmake_install.cmake libwebm.js libwebm.wasm libwebm.d.ts type_definition.d.ts",
"test": "node test/libwebm-tests.js && node test/run-worker-tests.js",
"test:watch": "nodemon test/libwebm-tests.js"
},
"keywords": [
"webm",
"wasm",
"libwebm"
],
"author": "Ronan LE MEILLAT for SCTG",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sctg-development/libwebm-js.git"
},
"dependencies": {}
}