-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.46 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
{
"name": "yeap",
"version": "1.3.0",
"description": "Magicless UI builder",
"main": "./lib/app.js",
"types": "./types/app.d.ts",
"type": "module",
"exports": {
".": {
"default": "./lib/app.js"
},
"./app": {
"default": "./lib/app.js"
},
"./components": {
"default": "./lib/components.js"
},
"./modules": {
"default": "./lib/modules.js"
},
"./runtime": {
"default": "./lib/runtime.js"
},
"./utils": {
"default": "./lib/utils.js"
},
"./web": {
"default": "./lib/web.js"
}
},
"typesVersions": {
">=3.1": {
"*": [
"types/*"
]
}
},
"files": [
"lib/**/*",
"types/**/*",
"README.md"
],
"scripts": {
"test": "vitest",
"coverage": "vitest --coverage",
"dev": "tsc --watch",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeapjs/yeap.git"
},
"keywords": [
"yeap",
"ui",
"front-end",
"reactive",
"components",
"performance"
],
"author": "hanako-eo",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeapjs/yeap/issues"
},
"homepage": "https://github.com/yeapjs/yeap#readme",
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"happy-dom": "^12.10.3",
"prettier": "^3.3.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^4.5.3",
"vitest": "^0.34.6"
}
}