@pantoken/storybook 0.1.0 → 0.1.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 +20 -17
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantoken/storybook",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A Storybook theme built from Instructure tokens (maps to Storybook ThemeVars).",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/thedannywahl/pantoken.git"
|
|
9
|
+
},
|
|
6
10
|
"files": [
|
|
7
11
|
"dist"
|
|
8
12
|
],
|
|
@@ -15,17 +19,23 @@
|
|
|
15
19
|
"publishConfig": {
|
|
16
20
|
"access": "public"
|
|
17
21
|
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"generate": "node scripts/generate.ts",
|
|
24
|
+
"dev": "vp run generate && vp pack --watch",
|
|
25
|
+
"test": "vp test",
|
|
26
|
+
"check": "vp check"
|
|
27
|
+
},
|
|
18
28
|
"dependencies": {
|
|
19
|
-
"@pantoken/
|
|
20
|
-
"@pantoken/
|
|
21
|
-
"@pantoken/
|
|
29
|
+
"@pantoken/model": "workspace:*",
|
|
30
|
+
"@pantoken/tokens": "workspace:*",
|
|
31
|
+
"@pantoken/utils": "workspace:*"
|
|
22
32
|
},
|
|
23
33
|
"devDependencies": {
|
|
24
|
-
"@
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"vite
|
|
28
|
-
"
|
|
34
|
+
"@pantoken/components": "workspace:*",
|
|
35
|
+
"@types/node": "catalog:",
|
|
36
|
+
"typescript": "catalog:",
|
|
37
|
+
"vite": "catalog:",
|
|
38
|
+
"vite-plus": "catalog:"
|
|
29
39
|
},
|
|
30
40
|
"peerDependencies": {
|
|
31
41
|
"@storybook/theming": ">=7"
|
|
@@ -38,12 +48,5 @@
|
|
|
38
48
|
"pantoken": {
|
|
39
49
|
"key": "storybook",
|
|
40
50
|
"kind": "subpath"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"generate": "node scripts/generate.ts",
|
|
44
|
-
"build": "vp run generate && vp pack",
|
|
45
|
-
"dev": "vp run generate && vp pack --watch",
|
|
46
|
-
"test": "vp test",
|
|
47
|
-
"check": "vp check"
|
|
48
51
|
}
|
|
49
|
-
}
|
|
52
|
+
}
|