This repository has been archived by the owner on Jul 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "minorui",
"version": "0.2.0",
"description": "A React UI component library with a minimal design. The official design system for Sutle.",
"author": "Joeylene Rivera",
"license": "MIT",
"repository": "jorenrui/minorui",
"main": "index.js",
"typings": "index.d.ts",
"module": "minorui.esm.js",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "cd example && npm start",
"dev": "tsc -p tsconfig.json --watch",
"build": "rm -rf dist && tsc -p tsconfig.json",
"prepare": "npm run build && npm run prepare:dist",
"prepare:dist": "cp -rf package.json README.md LICENSE CHANGELOG.md dist",
"prepublishOnly": "echo \"Error: Don't run 'npm publish' in root. Use 'npm run dist' instead.\" && exit 1",
"dist:beta": "cd dist && npm publish --ignore-scripts --tag beta",
"dist": "cd dist && npm publish --ignore-scripts"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@radix-ui/react-accessible-icon": "^0.1.0",
"@radix-ui/react-dialog": "^0.1.0",
"@radix-ui/react-dropdown-menu": "^0.1.0",
"@radix-ui/react-id": "^0.1.0",
"@radix-ui/react-label": "^0.1.0",
"@radix-ui/react-polymorphic": "^0.0.14",
"@radix-ui/react-progress": "^0.1.0",
"@radix-ui/react-separator": "^0.1.0",
"@radix-ui/react-visually-hidden": "^0.1.0",
"@stitches/react": "^1.2.5"
}
}