forked from lightning-tv/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.9 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
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
{
"name": "@lightningtv/core",
"version": "1.0.4",
"description": "Lightning TV Core for Universal Renderers",
"type": "module",
"main": "./dist/src/index.js",
"browser": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"sideEffects": false,
"scripts": {
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:fix:prettier && npm 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",
"build": "npm run tsc",
"tsc": "tsc",
"watch": "tsc -w",
"prepare": "husky",
"prepack": "npm run build"
},
"keywords": [
"lightning",
"javascript",
"canvas",
"web",
"tv"
],
"author": "Chris Lorenzo",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"vite": "^5.3.1"
},
"peerDependencies": {
"@lightningjs/renderer": "^1.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{js,cjs,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightning-tv/core.git"
},
"files": [
"dist",
"src",
"LICENSE",
"NOTICE",
"README.md"
]
}