@moderneinc/neo-styled-components 0.0.0-development
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 +33 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.esm.js +11 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -0
- package/package.json +61 -0
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @moderneinc/neo-styled-components
|
|
2
|
+
|
|
3
|
+
Styled MUI components for Moderne applications, built on top of `@moderneinc/neo-design` design tokens.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @moderneinc/neo-styled-components @mui/material react
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
import { /* components will be exported here */ } from '@moderneinc/neo-styled-components';
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Development
|
|
18
|
+
|
|
19
|
+
This package is part of the neo-design monorepo.
|
|
20
|
+
|
|
21
|
+
- **Build**: `npm run build`
|
|
22
|
+
- **Test**: `npm test`
|
|
23
|
+
- **Development**: See monorepo root for workspace commands
|
|
24
|
+
|
|
25
|
+
## Dependencies
|
|
26
|
+
|
|
27
|
+
- `@moderneinc/neo-design` - Design tokens and primitives
|
|
28
|
+
- `@mui/material` - Material-UI component library
|
|
29
|
+
- `react` - React library
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
UNLICENSED - Proprietary to Moderne
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @moderneinc/neo-styled-components
|
|
3
|
+
*
|
|
4
|
+
* Styled MUI components using Moderne design tokens
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Placeholder - components will be added here
|
|
8
|
+
const version = '0.0.0-development';
|
|
9
|
+
|
|
10
|
+
export { version };
|
|
11
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../src/index.js"],"sourcesContent":["/**\n * @moderneinc/neo-styled-components\n *\n * Styled MUI components using Moderne design tokens\n */\n\n// Placeholder - components will be added here\nexport const version = '0.0.0-development'\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;;AAEA;AACY,MAAC,OAAO,GAAG;;;;"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @moderneinc/neo-styled-components
|
|
5
|
+
*
|
|
6
|
+
* Styled MUI components using Moderne design tokens
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
// Placeholder - components will be added here
|
|
10
|
+
const version = '0.0.0-development';
|
|
11
|
+
|
|
12
|
+
exports.version = version;
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.js"],"sourcesContent":["/**\n * @moderneinc/neo-styled-components\n *\n * Styled MUI components using Moderne design tokens\n */\n\n// Placeholder - components will be added here\nexport const version = '0.0.0-development'\n"],"names":[],"mappings":";;AAAA;AACA;AACA;AACA;AACA;;AAEA;AACY,MAAC,OAAO,GAAG;;;;"}
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@moderneinc/neo-styled-components",
|
|
3
|
+
"version": "0.0.0-development",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Styled MUI components for Moderne applications",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.esm.js",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"clean": "rm -rf dist/*",
|
|
21
|
+
"prebuild": "npm run clean",
|
|
22
|
+
"build": "mkdir -p dist && cp src/index.js dist/temp-index.d.ts && rollup -c",
|
|
23
|
+
"postbuild": "rm -f dist/temp-index.d.ts",
|
|
24
|
+
"test": "vitest",
|
|
25
|
+
"test:run": "vitest run"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"design-system",
|
|
29
|
+
"mui",
|
|
30
|
+
"react",
|
|
31
|
+
"styled-components",
|
|
32
|
+
"moderne"
|
|
33
|
+
],
|
|
34
|
+
"author": "Moderne",
|
|
35
|
+
"license": "UNLICENSED",
|
|
36
|
+
"homepage": "https://github.com/moderneinc/neo-design#readme",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/moderneinc/neo-design.git"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@moderneinc/neo-design": "*"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@mui/material": "^7.0.0",
|
|
46
|
+
"react": "^18.0.0 || ^19.0.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@semantic-release/commit-analyzer": "13.0.1",
|
|
50
|
+
"@semantic-release/github": "11.0.6",
|
|
51
|
+
"@semantic-release/npm": "12.0.2",
|
|
52
|
+
"@semantic-release/release-notes-generator": "14.1.0",
|
|
53
|
+
"@types/node": "24.5.2",
|
|
54
|
+
"@types/react": "^18.0.0",
|
|
55
|
+
"conventional-changelog-conventionalcommits": "9.1.0",
|
|
56
|
+
"rollup": "4.52.0",
|
|
57
|
+
"rollup-plugin-dts": "6.2.3",
|
|
58
|
+
"semantic-release": "24.2.9",
|
|
59
|
+
"typescript": "5.9.2"
|
|
60
|
+
}
|
|
61
|
+
}
|