-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.39 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
84
85
86
87
88
89
90
{
"name": "hypp",
"version": "1.0.0",
"description": "Create DOM elements using JSX.",
"files": [
"dist",
"src"
],
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"scripts": {
"build": "rimraf dist && pkg build --strict && pkg --strict",
"commit": "cz",
"dev": "cd dev && vite",
"format": "prettier --write --cache --ignore-unknown .",
"lint": "eslint . --ext .cjs,.js,.ts,.tsx",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"release": "semantic-release",
"test": "vitest run",
"type-check": "tsc --build",
"watch": "pkg watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariuslundgard/hypp.git"
},
"author": "Marius Lundgård <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariuslundgard/hypp/issues"
},
"homepage": "https://github.com/mariuslundgard/hypp#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@sanity/pkg-utils": "^1.15.1",
"@sanity/semantic-release-preset": "^2.0.2",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vitest": "^0.24.3"
},
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
},
"release": {
"extends": "@sanity/semantic-release-preset",
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}