-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.36 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
{
"name": "classy-solid",
"version": "0.4.3",
"description": "Solid.js reactivity patterns for classes, and class components.",
"info": "The `classy-solid` package gives you a `@signal` decorator to make reactive class properties, an `@component` decorator to use classes as Solid components, and some other APIs to simplify usage of reactive patterns in classes. It is still early, more features and changes to come!",
"author": "Joe Pea <[email protected]>",
"contributors": [
{
"name": "Joe Pea",
"email": "[email protected]",
"url": "https://lume.io"
}
],
"license": "MIT",
"homepage": "http://github.com/lume/classy-solid#readme",
"type": "module",
"main": "dist/index.js",
"// main": "The 'main' field is fallback for legacy Node.js that has no type:module support, otherwise Node 13.2+ ignores it if type:module is set.",
"types": "dist/index.d.ts",
"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",
"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX OTHER SCRIPTS": "",
"example": "five-server . --open=example"
},
"dependencies": {
"lowclass": "^8.0.0",
"solid-js": "^1.3.13"
},
"devDependencies": {
"@lume/cli": "^0.14.0",
"five-server": "^0.3.1",
"prettier": "3.0.3",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lume/classy-solid.git"
},
"bugs": {
"url": "https://github.com/lume/classy-solid/issues"
},
"keywords": [
"solidhack",
"best_ecosystem",
"components",
"dep tracking reactivity",
"dep-tracking-reactivity",
"lume",
"reactive coding",
"reactive computation",
"reactive programming",
"reactive variables",
"reactive",
"reactive-coding",
"reactive-computation",
"reactive-programming",
"reactive-variables",
"reactive-effects",
"reactivity",
"solid",
"solid-js",
"solid.js",
"solidjs",
"true-reactivity",
"ts",
"typescript",
"web-components"
]
}