@dsai-io/docs 0.0.1

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/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@dsai-io/docs",
3
+ "version": "0.0.1",
4
+ "description": "Documentation site for DSAi design system",
5
+ "scripts": {
6
+ "dev": "echo 'Start docs dev server'",
7
+ "build": "echo 'Build documentation site'",
8
+ "preview": "echo 'Preview built documentation'",
9
+ "deploy": "echo 'Deploy documentation'"
10
+ },
11
+ "keywords": [
12
+ "documentation",
13
+ "docs",
14
+ "design-system"
15
+ ],
16
+ "dependencies": {
17
+ "@dsai-io/react": "workspace:*"
18
+ },
19
+ "license": "UNLICENSED",
20
+ "publishConfig": {
21
+ "access": "restricted"
22
+ }
23
+ }
package/project.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
3
+ "name": "@dsai-io/docs",
4
+ "sourceRoot": "packages/@dsai-io/docs/src",
5
+ "projectType": "application",
6
+ "targets": {
7
+ "dev": {
8
+ "executor": "nx:run-commands",
9
+ "options": {
10
+ "command": "echo 'Docs dev server not yet configured'"
11
+ }
12
+ },
13
+ "build": {
14
+ "executor": "nx:run-commands",
15
+ "outputs": ["{projectRoot}/dist"],
16
+ "options": {
17
+ "command": "echo 'Docs build not yet configured'"
18
+ }
19
+ },
20
+ "deploy": {
21
+ "executor": "nx:run-commands",
22
+ "options": {
23
+ "command": "echo 'Docs deployment not yet configured'"
24
+ }
25
+ }
26
+ },
27
+ "tags": ["type:application", "scope:docs"]
28
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": "../../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "outDir": "./dist",
5
+ "jsx": "react-jsx",
6
+ "moduleResolution": "bundler"
7
+ },
8
+ "include": ["src/**/*"],
9
+ "exclude": ["node_modules", "dist"],
10
+ "references": [
11
+ {
12
+ "path": "../react/tsconfig.json"
13
+ },
14
+ {
15
+ "path": "../tokens/tsconfig.json"
16
+ }
17
+ ]
18
+ }