This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "@lightningjs/solid-primitives",
"version": "0.6.5",
"description": "Lightning Primitives for Solid Lightning",
"type": "module",
"source": "./index.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"start": "npm run dev",
"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": "tsc",
"watch": "tsc -w",
"dev": "concurrently -c \"auto\" \"npm:watch\" \"npm:vite\"",
"vite": "vite --open \"/test/index.html\" --host",
"prepack": "npm run build"
},
"keywords": [
"lightning",
"javascript",
"canvas",
"web",
"tv"
],
"author": "Chris Lorenzo",
"license": "Apache-2.0",
"devDependencies": {
"@lightningjs/renderer": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{js,cjs,md}": "prettier --write"
},
"dependencies": {
"@solid-primitives/keyboard": "^1.2.8",
"@solid-primitives/scheduled": "^1.4.3"
},
"peerDependencies": {
"@lightningjs/solid": "*",
"solid-js": "*"
},
"files": [
"index.js",
"index.ts",
"dist",
"packages",
"LICENSE",
"NOTICE",
"README.md"
]
}