-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "element-behaviors",
"description": "An entity-component system for HTML elements.",
"version": "5.0.5",
"license": "LGPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"homepage": "https://github.com/trusktr/element-behaviors",
"scripts": {
"LUME SCRIPTS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX": "",
"clean": "lume clean",
"build": "lume build",
"dev": "lume dev",
"typecheck": "lume typecheck",
"typecheck:watch": "lume typecheckWatch",
"test": "lume test",
"test:watch": "lume test --watch",
"prettier": "lume prettier",
"prettier:check": "lume prettierCheck",
"release:patch": "lume releasePatch",
"release:minor": "lume releaseMinor",
"release:major": "lume releaseMajor",
"version": "lume versionHook",
"postversion": "lume postVersionHook",
"OTHER SCRIPTS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX": "",
"examples": "five-server . --open=./examples"
},
"dependencies": {
"@lume/custom-attributes": "^0.2.0",
"solid-js": "^1.0.0"
},
"devDependencies": {
"@lume/cli": "^0.14.0",
"five-server": "^0.3.1",
"lowclass": "^8.0.0",
"prettier": "3.0.3",
"typescript": "^5.0.0"
},
"peerDependencies": {
"solid-js": "*"
},
"repository": {
"type": "git",
"url": "[email protected]:trusktr/element-behaviors.git"
},
"bugs": {
"url": "https://github.com/trusktr/element-behaviors/issues"
},
"keywords": [
"dom",
"web-development",
"web-components",
"component-entity",
"entity-component",
"entity-component-system",
"ecs",
"webdev"
]
}