negative-space 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# negative-space
|
|
2
|
+
|
|
3
|
+
The main package for NSUI, exporting all components for React applications. Import and use any NSUI component directly from here.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
# Using Yarn
|
|
8
|
+
yarn add negative-space
|
|
9
|
+
|
|
10
|
+
# Using npm
|
|
11
|
+
npm install negative-space
|
|
12
|
+
|
|
13
|
+
## Contributing
|
|
14
|
+
|
|
15
|
+
Feel free to fork, tweak, and send a pull request!
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "negative-space",
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "Main React package exporting all NSUI components for easy use in your app",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"components",
|
|
10
|
+
"design-system",
|
|
11
|
+
"react",
|
|
12
|
+
"nsui",
|
|
13
|
+
"ui"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"main": "dist/index.js",
|
|
17
|
+
"module": "dist/index.mjs",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/negative-space-ui/nsui.git.git",
|
|
26
|
+
"directory": "packages/ui/button"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/negative-space-ui/nsui/issues"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"clean": "rimraf dist .turbo",
|
|
34
|
+
"dev": "pnpm build:fast --watch",
|
|
35
|
+
"lint": "eslint . --ext ts,tsx",
|
|
36
|
+
"postpack": "clean-package restore",
|
|
37
|
+
"prepack": "clean-package",
|
|
38
|
+
"typecheck": "tsc --noEmit"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@negative-space/action": "workspace:*",
|
|
42
|
+
"@negative-space/data-display": "workspace:*",
|
|
43
|
+
"@negative-space/feedback": "workspace:*",
|
|
44
|
+
"@negative-space/provider": "workspace:*",
|
|
45
|
+
"@negative-space/typography": "workspace:*"
|
|
46
|
+
},
|
|
47
|
+
"clean-package": "../../clean-package.config.json",
|
|
48
|
+
"exports": {
|
|
49
|
+
".": {
|
|
50
|
+
"types": "./dist/index.d.ts",
|
|
51
|
+
"import": "./dist/index.mjs",
|
|
52
|
+
"require": "./dist/index.js"
|
|
53
|
+
},
|
|
54
|
+
"./package.json": "./package.json"
|
|
55
|
+
}
|
|
56
|
+
}
|