-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "react-displ",
"description": "Simple libs to create a display component with breakpoints",
"version": "0.1.1",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"media",
"responsive",
"media query",
"react"
],
"author": {
"name": "Victor Bury",
"email": "bury.victor@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/anymaniax/react-display"
},
"scripts": {
"build": "tsup ./src/index.tsx --minify --clean --dts --format esm --splitting",
"dev": "tsup ./src/index.tsx --clean --dts --format esm --watch src",
"lint": "eslint src/**/*.ts",
"test": "vitest --global test.ts",
"format": "prettier --write 'src/**/*.{js,ts}'",
"prerelease": "yarn build",
"release": "dotenv release-it",
"prepare": "husky install && cd ./samples/basic && yarn",
"commitlint": "commitlint"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@release-it/conventional-changelog": "^4.2.0",
"@types/node": "^17.0.21",
"@types/prettier": "^2.4.4",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"dotenv-cli": "^4.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^12.3.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"release-it": "^14.12.5",
"rimraf": "^3.0.2",
"tsup": "^5.12.0",
"typescript": "^4.6.2",
"vitest": "^0.6.0",
"zx": "^5.2.0"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.0",
"react": "^18.2.0"
}
}