-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.34 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": "@lume/element",
"version": "0.14.0",
"description": "Create Custom Elements with reactivity and automatic re-rendering.",
"author": "Joe Pea <[email protected]>",
"license": "MIT",
"homepage": "http://github.com/lume/element#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"LUME SCRIPTS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX": "",
"clean": "lume clean",
"build": "lume build && npm run build:copy",
"build:copy": "npm run build:copy:jsx-runtime",
"build:copy:jsx-runtime": "ncp ./dist/jsx-runtime.d.ts ./jsx-runtime.d.ts && ncp ./dist/jsx-runtime.js ./jsx-runtime.js",
"// ^ build:copy TODO": "Add a copy files feature to lume build. This would copy specified files after each build or re-build. Perhaps add options for the existing copyAssets command",
"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": {
"babel-preset-solid": "^1.0.0",
"classy-solid": "^0.4.0",
"lowclass": "^8.0.0",
"solid-js": "^1.0.0"
},
"devDependencies": {
"@lume/cli": "^0.14.0",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"ncp": "^2.0.0",
"prettier": "3.0.3",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@types/react": "*"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lume/element.git"
},
"bugs": {
"url": "https://github.com/lume/element/issues"
},
"keywords": [
"custom elements",
"custom-elements",
"web components",
"web-components",
"html",
"shadowdom",
"shadow-dom",
"ui",
"ui components",
"ui-components",
"frp",
"functional reactive programming",
"functional-reactive-programming",
"reactive programming",
"reactive-programming",
"reactive coding",
"reactive-coding",
"reactive variables",
"reactive-variables",
"reactivity",
"reactive computation",
"reactive-computation"
]
}