forked from rohiievych/swayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.41 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
{
"name": "swayer",
"version": "1.0.0-alpha.5",
"description": "Schema based UI engine",
"author": "Roman Ohiievych <[email protected]>",
"license": "MIT",
"keywords": [
"app",
"application",
"lightweight",
"scalable",
"web",
"UI",
"engine",
"JavaScript-only",
"consistent",
"reactive"
],
"main": "index.js",
"type": "module",
"types": "types/index.d.ts",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/rohiievych/swayer"
},
"bugs": {
"url": "https://github.com/rohiievych/swayer/issues",
"email": "[email protected]"
},
"homepage": "https://swayer.dev",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/rohiievych"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"index.js",
"cli",
"lib",
"types"
],
"bin": {
"swr": "bin/swr.js"
},
"scripts": {
"types": "tsc",
"test": "npm run lint && npm run types",
"lint": "eslint .",
"fix": "npm run lint -- --fix"
},
"dependencies": {
"jsdom": "^21.1.0",
"pretty": "^2.0.0",
"terser": "^5.16.3"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-metarhia": "^8.1.0",
"globals": "^13.20.0",
"typescript": "^4.9.5"
}
}