forked from alfed7/gridlines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "@mezh-hq/react-gridlines",
"version": "1.0.1",
"description": "React component to draw grid lines in background.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"start": "bun run ./esbuild.config.js --watch",
"build": "bun run ./esbuild.config.js && bun build:types",
"build:types": "bunx --bun tsc --declaration --emitDeclarationOnly --declarationDir ./dist",
"bump-version": "bunx --bun automatic-versioning --disable-auto-sync --recursive $(if [ \"$TAG\" != \"latest\" ]; then echo --prerelease; fi) --prerelease-branch=development --prerelease-tag=$TAG --name=@mezh-hq/react-seat-toolkit --ignore-prefixes=ci",
"prepare": "lefthook install",
"release": "bunx github:akalanka47000/bunpublish --tag=${TAG:=latest} --provenance",
"test": "bun test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mezh-hq/react-gridlines.git"
},
"keywords": [
"Grid lines",
"net",
"svg",
"Grid lines background"
],
"author": "Alexander Fedorenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mezh-hq/react-gridlines/issues"
},
"homepage": "https://github.com/mezh-hq/react-gridlines#readme",
"peerDependencies": {
"js-base64": "^3.0.0",
"react": ">= 16.10.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@sliit-foss/automatic-versioning": "2.3.0",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/react": ">=16.10.0",
"bun-types": "1.0.21",
"react": ">= 16.10.0",
"esbuild": "0.20.1",
"lefthook": "1.4.3",
"prettier": "2.8.8"
},
"files": [
"dist",
"package.json"
]
}