-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 855 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 855 Bytes
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
{
"name": "lui",
"version": "2.3.2",
"description": "web framework",
"homepage": "https://l3p3.de/dok/lui.html",
"repository": {
"type": "git",
"url": "https://github.com/L3P3/lui"
},
"bugs": {
"url": "https://github.com/L3P3/lui/issues"
},
"main": "./src/lui.js",
"module": "./src/lui.js",
"exports": {
".": "./src/lui.js",
"./link": "./src/lui-link.js"
},
"type": "module",
"types": "./index.d.ts",
"scripts": {
"build": "bun run ./build.js",
"buildd": "bun run ./build.js d",
"test": "bun test --randomize"
},
"keywords": [
"framework",
"html",
"tiny",
"hooks"
],
"author": "L3P3 <dev@l3p3.de> (https://l3p3.de)",
"contributors": [
"Johann Laur <jl.01@icloud.com> (https://github.com/johann-lr)"
],
"license": "Zlib",
"devDependencies": {
"google-closure-compiler": "latest",
"jsdom": "latest"
}
}