@epicdm/flowstate-templates 1.0.0 → 1.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/README.md +25 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @epicdm/flowstate-templates
|
|
2
|
+
|
|
3
|
+
Business template bundles for the FlowState Method.
|
|
4
|
+
|
|
5
|
+
Ships a set of ready-to-use templates — project structures, milestone layouts, task checklists, and document scaffolds — that encode the FlowState methodology so teams can start running structured work without writing the boilerplate themselves.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
yarn add @epicdm/flowstate-templates
|
|
11
|
+
# or
|
|
12
|
+
npm install @epicdm/flowstate-templates
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import {} from /* template bundles */ '@epicdm/flowstate-templates'
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
See the package's TypeScript declarations for the full list of exports.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
Apache-2.0 © Epic Digital Interactive Media LLC
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epicdm/flowstate-templates",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Business template bundles for the FlowState Method",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"lint": "eslint src --ext .ts"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@epicdm/flowstate-collections": "
|
|
27
|
+
"@epicdm/flowstate-collections": "1.1.2",
|
|
28
28
|
"@types/jest": "^29.0.0",
|
|
29
29
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
30
30
|
"@typescript-eslint/parser": "^7.18.0",
|