forked from lightning-tv/solid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.75 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@lightningtv/solid",
"version": "3.0.0-1",
"description": "Lightning Renderer for Solid Universal",
"type": "module",
"exports": {
".": {
"import": {
"@lightningtv/source": "./src/index.ts",
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"./primitives": {
"import": {
"@lightningtv/source": "./src/primitives/index.ts",
"types": "./dist/src/primitives/index.d.ts",
"default": "./dist/src/primitives/index.js"
}
},
"./devtools": {
"import": {
"@lightningtv/source": "./src/devtools/index.ts",
"types": "./dist/src/devtools/index.d.ts",
"default": "./dist/src/devtools/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",
"release": "release-it --only-version"
},
"keywords": [
"lightning",
"javascript",
"canvas",
"web",
"tv"
],
"author": "Chris Lorenzo",
"license": "Apache-2.0",
"dependencies": {
"@lightningtv/core": "^3.0.0-0",
"@solid-primitives/event-listener": "^2.3.3",
"@solid-primitives/mouse": "^2.0.20",
"@solid-primitives/scheduled": "^1.4.4"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"solid-js": "^1.9.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"@solid-devtools/debugger": "^0.27.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{js,cjs,md}": "prettier --write"
},
"peerDependencies": {
"@lightningjs/renderer": "^3.0.0-beta3",
"@solidjs/router": "^0.15.1",
"solid-js": "*"
},
"optionalDependencies": {
"@solid-devtools/debugger": "^0.27.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightning-tv/solid.git"
},
"files": [
"dist",
"src",
"jsx-runtime.d.ts",
"LICENSE",
"NOTICE",
"README.md"
]
}