-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 921 Bytes
/
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
{
"name": "@albatrosses/ah-kite",
"version": "0.0.6",
"description": "UI components, colors, fonts and style for Albatrosses",
"scripts": {
"build": "rm -rf ./lib && tsc --build tsconfig.json && cp -r ./fonts ./styles ./lib",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore . --fix",
"push": "npm run build && npm version patch && npm publish --access public && rm -rf ./lib"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"author": "capitalism_4418@163.com",
"files": [
"/lib",
"README.md"
],
"main": "lib/index.js",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.0"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.28",
"typescript": "^5.0.2"
}
}