-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.71 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": "@sidan-lab/sidan-ui",
"description": "UI library from SIDAN Lab",
"version": "0.1.1",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"homepage": "https://github.com/sidan-lab/sidan-ui",
"author": {
"name": "sidan-lab",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sidan-lab/sidan-ui.git"
},
"files": [
"dist"
],
"keywords": [
"react",
"stitches",
"ui"
],
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"ci": "yarn && yarn lint && yarn build",
"pub": "yarn ci && npm publish --access public",
"lint": "eslint 'src/*.ts' --fix",
"prepare": "husky install"
},
"dependencies": {
"@stitches/react": "^1.2.8",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "4.9.5"
},
"lint-staged": {
"**/*.{js,ts,}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/node": "18.14.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"commitlint": "^17.4.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.4"
}
}