-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.83 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@cosmoau/ui",
"description": "Cosmo's internal component library, built with React, Next.js, and Stitches.",
"version": "1.10.4",
"author": "Jackson Dolman <[email protected]>",
"browserslist": {
"production": [
"defaults",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/cosmoau/ui/issues"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.8",
"@phosphor-icons/react": "^2.1.7",
"@popperjs/core": "^2.11.8",
"@stitches/react": "^1.2.8",
"@swc/helpers": "^0.5.13",
"chrono-node": "^2.7.7",
"dayjs": "^1.11.13",
"fast-sort": "^3.4.1",
"react-hot-toast": "^2.4.1",
"react-wrap-balancer": "^1.1.1"
},
"devDependencies": {
"@parcel/optimizer-htmlnano": "2.12.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/google.maps": "^3.58.1",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^8.57.1",
"eslint-config-dolmios": "^1.11.1",
"next": "^15.0.2",
"parcel": "2.12.0",
"path-browserify": "^1.0.1",
"prettier": "^3.3.3",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"util": "^0.12.5"
},
"eslintConfig": {
"extends": [
"dolmios"
],
"rules": {
"react-hooks/exhaustive-deps": "off"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/cosmoau/ui",
"keywords": [
"component",
"components",
"cosmo",
"design",
"framework",
"frontend",
"next",
"nextjs",
"react",
"react-component",
"stitches",
"stitches-react",
"ui",
"user interface"
],
"license": "MIT",
"module": "dist/index.js",
"peerDependencies": {
"next": "^15.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"prettier": "eslint-config-dolmios/configs/prettier",
"repository": {
"type": "git",
"url": "git://github.com/cosmoau/ui.git"
},
"scripts": {
"build": "pnpm tidy && pnpm prebuild && parcel build src/index.ts --dist-dir dist",
"bump": "pnpm up && pnpm tidy && pnpm build",
"dev": "echo '⚡️ Fetching device IP for development...' && ipconfig getifaddr en0 && echo '🫡' && parcel playground/index.html --dist-dir playground/dist --open --no-cache --port 420",
"kill": "lsof -ti tcp:420 | xargs kill",
"lint": "eslint src --ext .ts,.tsx --fix",
"prebuild": "rm -rf dist .parcel-cache",
"prettier": "prettier --check --write src playground/App.tsx",
"tidy": "pnpm lint && pnpm prettier",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"source": "src/index.ts",
"types": "dist/types.d.ts"
}