-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 2.08 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
{
"name": "kampos",
"version": "0.10.2",
"description": "Tiny and fast effects compositor on WebGL",
"registry": "https://registry.npmjs.org/",
"main": "dist/index.cjs",
"module": "index.js",
"type": "module",
"types": "types.d.ts",
"scripts": {
"build": "rollup -c rollup.build.js && rollup -c rollup.umd.js",
"watch": "rollup -c rollup.build.js -w",
"demo": "cd demo && rollup -c && cd -",
"watch:demo": "cd demo && rollup -c -w && cd -",
"test:unit": "vitest test/unit/core.js && vitest test/unit/kampos.js",
"test:e2e": "vitest test/e2e/*.js",
"test": "npm run test:unit && npm run test:e2e",
"docs": "documentation build ./index.js -f html -o docs -c documentation.yml",
"check": "npm-check -u",
"prettier": "prettier --write .",
"start": "npm run build && npm run demo && npx http-server",
"dev": "concurrently \"npm run watch\" \"npm run watch:demo\" \"npx http-server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/kampos.git"
},
"keywords": [
"effects",
"media",
"video",
"filters",
"webgl",
"compositor"
],
"author": "Yehonatan Daniv",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix-incubator/kampos/issues"
},
"homepage": "https://wix-incubator.github.io/kampos/",
"devDependencies": {
"@babel/core": "^7.24.7",
"concurrently": "^8.2.2",
"documentation": "^14.0.3",
"finalhandler": "^1.2.0",
"get-port": "^7.1.0",
"gl": "^6.0.2",
"http-server": "^14.1.1",
"node-canvas-webgl": "^0.3.0",
"npm-check": "^6.0.1",
"pify": "^6.1.0",
"pixelmatch": "^6.0.0",
"pngjs": "^7.0.0",
"puppeteer": "^23.0.2",
"rollup": "^4.18.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-progress": "^1.1.2",
"serve-static": "^1.15.0",
"vitest": "^2.0.2"
}
}