This repository was archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"name": "@lume/variable",
"version": "0.10.1",
"description": "Create reactive variables and react their changes.",
"author": "Joe Pea <joe@trusktr.io>",
"license": "MIT",
"homepage": "http://github.com/lume/variable#readme",
"type": "module",
"main": "dist/index.js",
"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"
},
"dependencies": {
"lowclass": "^6.0.0",
"solid-js": "<1.5.0"
},
"devDependencies": {
"@lume/cli": "^0.10.0",
"prettier": "3.0.3",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lume/variable.git"
},
"bugs": {
"url": "https://github.com/lume/variable/issues"
},
"keywords": [
"frp",
"functional reactive programming",
"functional-reactive-programming",
"reactive programming",
"reactive-programming",
"reactive coding",
"reactive-coding",
"reactive variables",
"reactive-variables",
"reactivity",
"reactive computation",
"reactive-computation"
]
}