-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "hyperons",
"version": "2.0.0",
"description": "Renders JSX components to HTML on the server and in the browser.",
"main": "dist/hyperons.cjs.js",
"module": "dist/hyperons.esm.js",
"browser": "dist/hyperons.umd.js",
"scripts": {
"build": "vite build -c vite.config.js",
"prepare": "npm run build",
"spec": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint",
"format": "prettier --write '**/*.{js,jsx}'",
"verify": "npm run lint && npm run format",
"test": "npm run verify && npm run spec"
},
"keywords": [
"html",
"hyperscript",
"jsx",
"renderer",
"strings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/i-like-robots/hyperons.git"
},
"author": "Matt Hinchliffe",
"contributors": [
"Rowan Manning"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/i-like-robots/hyperons/issues"
},
"homepage": "https://github.com/i-like-robots/hyperons",
"devDependencies": {
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"prettier": "^3.3.0",
"vite": "^5.1.6",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=14.0.0"
}
}