-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
91 lines (91 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@lightningjs/renderer",
"version": "2.6.2",
"description": "Lightning 3 Renderer",
"type": "module",
"main": "./dist/exports/index.js",
"exports": {
".": "./dist/exports/index.js",
"./utils": "./dist/exports/utils.js",
"./canvas": "./dist/exports/canvas.js",
"./webgl": "./dist/exports/webgl.js",
"./inspector": "./dist/exports/inspector.js"
},
"scripts": {
"preinstall": "node scripts/please-use-pnpm.js",
"start": "cd examples && pnpm start",
"start:prod": "cd examples && pnpm start:prod",
"build": "tsc --build",
"build:docker": "docker build -t visual-regression .",
"watch": "tsc --build --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:visual": "cd visual-regression && pnpm test:visual",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:fix": "pnpm run lint:fix:prettier && pnpm run lint:fix:eslint",
"lint:prettier": "prettier --check \"**/*.{ts,js,cjs,md}\"",
"lint:fix:prettier": "prettier --write \"**/*.{ts,js,cjs,md}\"",
"lint:eslint": "eslint .",
"lint:fix:eslint": "eslint --fix .",
"typedoc": "typedoc",
"prepare": "husky install",
"prepack": "pnpm run build",
"node-version": "node --version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightning-js/renderer.git"
},
"sideEffects": false,
"keywords": [
"Lightning",
"LightningJS",
"WebGL",
"JS",
"WPE"
],
"author": "Comcast Cable Communications Management, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lightning-js/renderer/issues"
},
"homepage": "https://github.com/lightning-js/renderer#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-v8": "^1.6.0",
"concurrently": "^8.0.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"typedoc": "^0.25.1",
"typescript": "^5.2.2",
"vitest": "^1.6.0",
"vitest-mock-extended": "^1.3.1"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{js,cjs,md}": "prettier --write"
},
"files": [
"dist",
"src",
"exports",
"LICENSE",
"NOTICE",
"README.md",
"scripts"
],
"packageManager": "[email protected]",
"engines": {
"npm": ">= 10.0.0",
"pnpm": ">= 8.9.2",
"node": ">= 20.9.0"
}
}