@pantoken/pantoken 0.1.0
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 +56 -0
- package/dist/angular.d.mts +1 -0
- package/dist/angular.mjs +2 -0
- package/dist/astro.d.mts +1 -0
- package/dist/astro.mjs +2 -0
- package/dist/bootstrap.d.mts +1 -0
- package/dist/bootstrap.mjs +2 -0
- package/dist/colors.d.mts +1 -0
- package/dist/colors.mjs +2 -0
- package/dist/components.d.mts +1 -0
- package/dist/components.mjs +2 -0
- package/dist/css.d.mts +1 -0
- package/dist/css.mjs +3 -0
- package/dist/cssInJs.d.mts +1 -0
- package/dist/cssInJs.mjs +2 -0
- package/dist/docusaurus.d.mts +1 -0
- package/dist/docusaurus.mjs +2 -0
- package/dist/drupal.d.mts +1 -0
- package/dist/drupal.mjs +2 -0
- package/dist/dtcg.d.mts +1 -0
- package/dist/dtcg.mjs +2 -0
- package/dist/email.d.mts +1 -0
- package/dist/email.mjs +2 -0
- package/dist/figma.d.mts +1 -0
- package/dist/figma.mjs +2 -0
- package/dist/foundation.d.mts +1 -0
- package/dist/foundation.mjs +2 -0
- package/dist/icons.d.mts +1 -0
- package/dist/icons.mjs +2 -0
- package/dist/index.d.mts +28 -0
- package/dist/index.mjs +28 -0
- package/dist/less.d.mts +1 -0
- package/dist/less.mjs +2 -0
- package/dist/logos.d.mts +1 -0
- package/dist/logos.mjs +2 -0
- package/dist/markdown-it.d.mts +1 -0
- package/dist/markdown-it.mjs +2 -0
- package/dist/mintlify.d.mts +1 -0
- package/dist/mintlify.mjs +2 -0
- package/dist/mui.d.mts +1 -0
- package/dist/mui.mjs +2 -0
- package/dist/next.d.mts +1 -0
- package/dist/next.mjs +2 -0
- package/dist/panda.d.mts +1 -0
- package/dist/panda.mjs +2 -0
- package/dist/pendo.d.mts +1 -0
- package/dist/pendo.mjs +2 -0
- package/dist/postcss.d.mts +1 -0
- package/dist/postcss.mjs +2 -0
- package/dist/primitives.d.mts +1 -0
- package/dist/primitives.mjs +2 -0
- package/dist/pruneCustomProps.d.mts +1 -0
- package/dist/pruneCustomProps.mjs +2 -0
- package/dist/react-markdown.d.mts +1 -0
- package/dist/react-markdown.mjs +2 -0
- package/dist/react.d.mts +1 -0
- package/dist/react.mjs +2 -0
- package/dist/reactNative.d.mts +1 -0
- package/dist/reactNative.mjs +2 -0
- package/dist/rehype.d.mts +1 -0
- package/dist/rehype.mjs +2 -0
- package/dist/scss.d.mts +1 -0
- package/dist/scss.mjs +2 -0
- package/dist/shadcn.d.mts +1 -0
- package/dist/shadcn.mjs +2 -0
- package/dist/simpleIcons.d.mts +1 -0
- package/dist/simpleIcons.mjs +2 -0
- package/dist/stacking.d.mts +1 -0
- package/dist/stacking.mjs +2 -0
- package/dist/storybook.d.mts +1 -0
- package/dist/storybook.mjs +2 -0
- package/dist/stylus.d.mts +1 -0
- package/dist/stylus.mjs +2 -0
- package/dist/svelte.d.mts +1 -0
- package/dist/svelte.mjs +2 -0
- package/dist/swatches.d.mts +1 -0
- package/dist/swatches.mjs +2 -0
- package/dist/tailwind.d.mts +1 -0
- package/dist/tailwind.mjs +2 -0
- package/dist/tokens.d.mts +1 -0
- package/dist/tokens.mjs +2 -0
- package/dist/transition.d.mts +1 -0
- package/dist/transition.mjs +2 -0
- package/dist/vanilla.d.mts +1 -0
- package/dist/vanilla.mjs +2 -0
- package/dist/visualDebug.d.mts +1 -0
- package/dist/visualDebug.mjs +2 -0
- package/dist/vite.d.mts +1 -0
- package/dist/vite.mjs +2 -0
- package/dist/vitepress.d.mts +1 -0
- package/dist/vitepress.mjs +2 -0
- package/dist/vue.d.mts +1 -0
- package/dist/vue.mjs +2 -0
- package/dist/webComponents.d.mts +1 -0
- package/dist/webComponents.mjs +2 -0
- package/dist/webpack.d.mts +1 -0
- package/dist/webpack.mjs +2 -0
- package/dist/wordpress.d.mts +1 -0
- package/dist/wordpress.mjs +2 -0
- package/package.json +129 -0
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# @pantoken/pantoken
|
|
2
|
+
|
|
3
|
+
The unified pantoken package. It auto-aggregates every `@pantoken/*` target — tokens, icons, and
|
|
4
|
+
platform integrations — into one import surface, generated at build time by `@pantoken/aggregate`.
|
|
5
|
+
Each target is also installable on its own (`npm i @pantoken/astro`).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm i @pantoken/pantoken
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
import { astro } from "@pantoken/pantoken";
|
|
17
|
+
const { InstUI } = astro; // the full Astro/Starlight plugin
|
|
18
|
+
|
|
19
|
+
import { tokens } from "@pantoken/pantoken"; // the resolved IR (namespace)
|
|
20
|
+
import { icons } from "@pantoken/pantoken"; // the icon set
|
|
21
|
+
|
|
22
|
+
import "@pantoken/pantoken/css"; // side-effect: inject the stylesheet
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
`@pantoken/pantoken/astro` resolves to the same code as `@pantoken/astro`, and so on for every target.
|
|
26
|
+
|
|
27
|
+
## API
|
|
28
|
+
|
|
29
|
+
- **Named namespace exports** — each aggregated target is a namespace on the root import, e.g.
|
|
30
|
+
`astro`, `bootstrap`, `css`, `tokens`, `icons`, `scss`, and the rest.
|
|
31
|
+
- **Subpath exports** — the same targets are reachable as subpaths for direct or side-effect
|
|
32
|
+
imports (`@pantoken/pantoken/tokens`, `@pantoken/pantoken/icons`, `@pantoken/pantoken/css`, and so on). The `package.json`
|
|
33
|
+
`exports` map lists 40-plus subpaths, one per target, each resolving to its standalone
|
|
34
|
+
`@pantoken/*` package. See that map for the full, current set.
|
|
35
|
+
|
|
36
|
+
## How aggregation works
|
|
37
|
+
|
|
38
|
+
Each target package declares a `pantoken` field in its `package.json`:
|
|
39
|
+
|
|
40
|
+
```json
|
|
41
|
+
"pantoken": { "key": "astro", "kind": "namespace" }
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
`@pantoken/aggregate` scans the meta package's dependencies for that field and generates the
|
|
45
|
+
barrel, one subpath entry per target, and the `exports` map. Add a new target package with a
|
|
46
|
+
`pantoken` field and it registers automatically — no manual edits here. The files under `src/` are
|
|
47
|
+
generated and carry a "do not edit by hand" banner.
|
|
48
|
+
|
|
49
|
+
## Related
|
|
50
|
+
|
|
51
|
+
- `@pantoken/aggregate` generates this package's barrel and exports map.
|
|
52
|
+
- `@pantoken/core` builds the token IR the aggregated targets emit.
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/angular";
|
package/dist/angular.mjs
ADDED
package/dist/astro.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/astro";
|
package/dist/astro.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/bootstrap";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-colors";
|
package/dist/colors.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/components";
|
package/dist/css.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/css";
|
package/dist/css.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/css-in-js";
|
package/dist/cssInJs.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/docusaurus";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/drupal";
|
package/dist/drupal.mjs
ADDED
package/dist/dtcg.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/dtcg";
|
package/dist/dtcg.mjs
ADDED
package/dist/email.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/email";
|
package/dist/email.mjs
ADDED
package/dist/figma.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/figma";
|
package/dist/figma.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/foundation";
|
package/dist/icons.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/icons";
|
package/dist/icons.mjs
ADDED
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as astro from "@pantoken/astro";
|
|
2
|
+
import * as bootstrap from "@pantoken/bootstrap";
|
|
3
|
+
import * as colors from "@pantoken/plugin-colors";
|
|
4
|
+
import * as components from "@pantoken/components";
|
|
5
|
+
import * as css from "@pantoken/css";
|
|
6
|
+
import * as cssInJs from "@pantoken/css-in-js";
|
|
7
|
+
import * as docusaurus from "@pantoken/docusaurus";
|
|
8
|
+
import * as dtcg from "@pantoken/dtcg";
|
|
9
|
+
import * as foundation from "@pantoken/foundation";
|
|
10
|
+
import * as icons from "@pantoken/icons";
|
|
11
|
+
import * as less from "@pantoken/less";
|
|
12
|
+
import * as logos from "@pantoken/plugin-logos";
|
|
13
|
+
import * as mintlify from "@pantoken/mintlify";
|
|
14
|
+
import * as mui from "@pantoken/mui";
|
|
15
|
+
import * as primitives from "@pantoken/plugin-primitives";
|
|
16
|
+
import * as pruneCustomProps from "@pantoken/plugin-prune-custom-props";
|
|
17
|
+
import * as rehype from "@pantoken/rehype";
|
|
18
|
+
import * as scss from "@pantoken/scss";
|
|
19
|
+
import * as shadcn from "@pantoken/shadcn";
|
|
20
|
+
import * as simpleIcons from "@pantoken/plugin-simple-icons";
|
|
21
|
+
import * as stacking from "@pantoken/plugin-stacking";
|
|
22
|
+
import * as stylus from "@pantoken/stylus";
|
|
23
|
+
import * as tokens from "@pantoken/tokens";
|
|
24
|
+
import * as transition from "@pantoken/plugin-transition";
|
|
25
|
+
import * as visualDebug from "@pantoken/plugin-visual-debug";
|
|
26
|
+
import * as vitepress from "@pantoken/vitepress";
|
|
27
|
+
import * as webComponents from "@pantoken/web-components";
|
|
28
|
+
export { astro, bootstrap, colors, components, css, cssInJs, docusaurus, dtcg, foundation, icons, less, logos, mintlify, mui, primitives, pruneCustomProps, rehype, scss, shadcn, simpleIcons, stacking, stylus, tokens, transition, visualDebug, vitepress, webComponents };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as astro from "@pantoken/astro";
|
|
2
|
+
import * as bootstrap from "@pantoken/bootstrap";
|
|
3
|
+
import * as colors from "@pantoken/plugin-colors";
|
|
4
|
+
import * as components from "@pantoken/components";
|
|
5
|
+
import * as css from "@pantoken/css";
|
|
6
|
+
import * as cssInJs from "@pantoken/css-in-js";
|
|
7
|
+
import * as docusaurus from "@pantoken/docusaurus";
|
|
8
|
+
import * as dtcg from "@pantoken/dtcg";
|
|
9
|
+
import * as foundation from "@pantoken/foundation";
|
|
10
|
+
import * as icons from "@pantoken/icons";
|
|
11
|
+
import * as less from "@pantoken/less";
|
|
12
|
+
import * as logos from "@pantoken/plugin-logos";
|
|
13
|
+
import * as mintlify from "@pantoken/mintlify";
|
|
14
|
+
import * as mui from "@pantoken/mui";
|
|
15
|
+
import * as primitives from "@pantoken/plugin-primitives";
|
|
16
|
+
import * as pruneCustomProps from "@pantoken/plugin-prune-custom-props";
|
|
17
|
+
import * as rehype from "@pantoken/rehype";
|
|
18
|
+
import * as scss from "@pantoken/scss";
|
|
19
|
+
import * as shadcn from "@pantoken/shadcn";
|
|
20
|
+
import * as simpleIcons from "@pantoken/plugin-simple-icons";
|
|
21
|
+
import * as stacking from "@pantoken/plugin-stacking";
|
|
22
|
+
import * as stylus from "@pantoken/stylus";
|
|
23
|
+
import * as tokens from "@pantoken/tokens";
|
|
24
|
+
import * as transition from "@pantoken/plugin-transition";
|
|
25
|
+
import * as visualDebug from "@pantoken/plugin-visual-debug";
|
|
26
|
+
import * as vitepress from "@pantoken/vitepress";
|
|
27
|
+
import * as webComponents from "@pantoken/web-components";
|
|
28
|
+
export { astro, bootstrap, colors, components, css, cssInJs, docusaurus, dtcg, foundation, icons, less, logos, mintlify, mui, primitives, pruneCustomProps, rehype, scss, shadcn, simpleIcons, stacking, stylus, tokens, transition, visualDebug, vitepress, webComponents };
|
package/dist/less.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/less";
|
package/dist/less.mjs
ADDED
package/dist/logos.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-logos";
|
package/dist/logos.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/markdown-it";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/mintlify";
|
package/dist/mui.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/mui";
|
package/dist/mui.mjs
ADDED
package/dist/next.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/next";
|
package/dist/next.mjs
ADDED
package/dist/panda.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/panda";
|
package/dist/panda.mjs
ADDED
package/dist/pendo.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/pendo";
|
package/dist/pendo.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/postcss";
|
package/dist/postcss.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-primitives";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-prune-custom-props";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/react-markdown";
|
package/dist/react.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/react";
|
package/dist/react.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/react-native";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/rehype";
|
package/dist/rehype.mjs
ADDED
package/dist/scss.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/scss";
|
package/dist/scss.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/shadcn";
|
package/dist/shadcn.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-simple-icons";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-stacking";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/storybook";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/stylus";
|
package/dist/stylus.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/svelte";
|
package/dist/svelte.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/swatches";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/tailwind";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/tokens";
|
package/dist/tokens.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-transition";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/vanilla";
|
package/dist/vanilla.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/plugin-visual-debug";
|
package/dist/vite.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/vite";
|
package/dist/vite.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/vitepress";
|
package/dist/vue.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/vue";
|
package/dist/vue.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/web-components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/webpack";
|
package/dist/webpack.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@pantoken/wordpress";
|
package/package.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pantoken/pantoken",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "The unified pantoken package: Instructure design tokens, icons, and platform integrations, auto-aggregated from @pantoken/*.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./dist/index.mjs",
|
|
12
|
+
"./angular": "./dist/angular.mjs",
|
|
13
|
+
"./astro": "./dist/astro.mjs",
|
|
14
|
+
"./bootstrap": "./dist/bootstrap.mjs",
|
|
15
|
+
"./colors": "./dist/colors.mjs",
|
|
16
|
+
"./components": "./dist/components.mjs",
|
|
17
|
+
"./css": "./dist/css.mjs",
|
|
18
|
+
"./cssInJs": "./dist/cssInJs.mjs",
|
|
19
|
+
"./docusaurus": "./dist/docusaurus.mjs",
|
|
20
|
+
"./drupal": "./dist/drupal.mjs",
|
|
21
|
+
"./dtcg": "./dist/dtcg.mjs",
|
|
22
|
+
"./email": "./dist/email.mjs",
|
|
23
|
+
"./figma": "./dist/figma.mjs",
|
|
24
|
+
"./foundation": "./dist/foundation.mjs",
|
|
25
|
+
"./icons": "./dist/icons.mjs",
|
|
26
|
+
"./less": "./dist/less.mjs",
|
|
27
|
+
"./logos": "./dist/logos.mjs",
|
|
28
|
+
"./markdown-it": "./dist/markdown-it.mjs",
|
|
29
|
+
"./mintlify": "./dist/mintlify.mjs",
|
|
30
|
+
"./mui": "./dist/mui.mjs",
|
|
31
|
+
"./next": "./dist/next.mjs",
|
|
32
|
+
"./panda": "./dist/panda.mjs",
|
|
33
|
+
"./pendo": "./dist/pendo.mjs",
|
|
34
|
+
"./postcss": "./dist/postcss.mjs",
|
|
35
|
+
"./primitives": "./dist/primitives.mjs",
|
|
36
|
+
"./pruneCustomProps": "./dist/pruneCustomProps.mjs",
|
|
37
|
+
"./react": "./dist/react.mjs",
|
|
38
|
+
"./react-markdown": "./dist/react-markdown.mjs",
|
|
39
|
+
"./reactNative": "./dist/reactNative.mjs",
|
|
40
|
+
"./rehype": "./dist/rehype.mjs",
|
|
41
|
+
"./scss": "./dist/scss.mjs",
|
|
42
|
+
"./shadcn": "./dist/shadcn.mjs",
|
|
43
|
+
"./simpleIcons": "./dist/simpleIcons.mjs",
|
|
44
|
+
"./stacking": "./dist/stacking.mjs",
|
|
45
|
+
"./storybook": "./dist/storybook.mjs",
|
|
46
|
+
"./stylus": "./dist/stylus.mjs",
|
|
47
|
+
"./svelte": "./dist/svelte.mjs",
|
|
48
|
+
"./swatches": "./dist/swatches.mjs",
|
|
49
|
+
"./tailwind": "./dist/tailwind.mjs",
|
|
50
|
+
"./tokens": "./dist/tokens.mjs",
|
|
51
|
+
"./transition": "./dist/transition.mjs",
|
|
52
|
+
"./vanilla": "./dist/vanilla.mjs",
|
|
53
|
+
"./visualDebug": "./dist/visualDebug.mjs",
|
|
54
|
+
"./vite": "./dist/vite.mjs",
|
|
55
|
+
"./vitepress": "./dist/vitepress.mjs",
|
|
56
|
+
"./vue": "./dist/vue.mjs",
|
|
57
|
+
"./webComponents": "./dist/webComponents.mjs",
|
|
58
|
+
"./webpack": "./dist/webpack.mjs",
|
|
59
|
+
"./wordpress": "./dist/wordpress.mjs",
|
|
60
|
+
"./package.json": "./package.json"
|
|
61
|
+
},
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@pantoken/angular": "0.1.0",
|
|
67
|
+
"@pantoken/astro": "0.1.0",
|
|
68
|
+
"@pantoken/components": "0.1.0",
|
|
69
|
+
"@pantoken/bootstrap": "0.1.0",
|
|
70
|
+
"@pantoken/css-in-js": "0.1.0",
|
|
71
|
+
"@pantoken/css": "0.1.0",
|
|
72
|
+
"@pantoken/docusaurus": "0.1.0",
|
|
73
|
+
"@pantoken/dtcg": "0.1.0",
|
|
74
|
+
"@pantoken/email": "0.1.0",
|
|
75
|
+
"@pantoken/figma": "0.1.0",
|
|
76
|
+
"@pantoken/drupal": "0.1.0",
|
|
77
|
+
"@pantoken/icons": "0.1.0",
|
|
78
|
+
"@pantoken/foundation": "0.1.0",
|
|
79
|
+
"@pantoken/less": "0.1.0",
|
|
80
|
+
"@pantoken/mui": "0.1.0",
|
|
81
|
+
"@pantoken/markdown-it": "0.1.0",
|
|
82
|
+
"@pantoken/next": "0.1.0",
|
|
83
|
+
"@pantoken/mintlify": "0.1.0",
|
|
84
|
+
"@pantoken/pendo": "0.1.0",
|
|
85
|
+
"@pantoken/panda": "0.1.0",
|
|
86
|
+
"@pantoken/plugin-colors": "0.1.0",
|
|
87
|
+
"@pantoken/plugin-logos": "0.1.0",
|
|
88
|
+
"@pantoken/plugin-simple-icons": "0.1.0",
|
|
89
|
+
"@pantoken/plugin-prune-custom-props": "0.1.0",
|
|
90
|
+
"@pantoken/plugin-primitives": "0.1.0",
|
|
91
|
+
"@pantoken/plugin-stacking": "0.1.0",
|
|
92
|
+
"@pantoken/plugin-visual-debug": "0.1.0",
|
|
93
|
+
"@pantoken/postcss": "0.1.0",
|
|
94
|
+
"@pantoken/plugin-transition": "0.1.0",
|
|
95
|
+
"@pantoken/react": "0.1.0",
|
|
96
|
+
"@pantoken/rehype": "0.1.0",
|
|
97
|
+
"@pantoken/shadcn": "0.1.0",
|
|
98
|
+
"@pantoken/react-native": "0.1.0",
|
|
99
|
+
"@pantoken/stylus": "0.1.0",
|
|
100
|
+
"@pantoken/svelte": "0.1.0",
|
|
101
|
+
"@pantoken/scss": "0.1.0",
|
|
102
|
+
"@pantoken/storybook": "0.1.0",
|
|
103
|
+
"@pantoken/swatches": "0.1.0",
|
|
104
|
+
"@pantoken/tailwind": "0.1.0",
|
|
105
|
+
"@pantoken/tokens": "0.1.0",
|
|
106
|
+
"@pantoken/vanilla": "0.1.0",
|
|
107
|
+
"@pantoken/vite": "0.1.0",
|
|
108
|
+
"@pantoken/vue": "0.1.0",
|
|
109
|
+
"@pantoken/vitepress": "0.1.0",
|
|
110
|
+
"@pantoken/web-components": "0.1.0",
|
|
111
|
+
"@pantoken/webpack": "0.1.0",
|
|
112
|
+
"@pantoken/wordpress": "0.1.0",
|
|
113
|
+
"@pantoken/react-markdown": "0.1.0"
|
|
114
|
+
},
|
|
115
|
+
"devDependencies": {
|
|
116
|
+
"@types/node": "^24.13.3",
|
|
117
|
+
"typescript": "^6.0.3",
|
|
118
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.4",
|
|
119
|
+
"vite-plus": "0.2.4",
|
|
120
|
+
"@pantoken/aggregate": "0.1.0"
|
|
121
|
+
},
|
|
122
|
+
"scripts": {
|
|
123
|
+
"aggregate": "node scripts/aggregate.mjs",
|
|
124
|
+
"build": "vp run aggregate && vp pack",
|
|
125
|
+
"dev": "vp pack --watch",
|
|
126
|
+
"test": "vp run aggregate && vp test",
|
|
127
|
+
"check": "vp check"
|
|
128
|
+
}
|
|
129
|
+
}
|