@pantoken/vitepress 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 +30 -17
package/package.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantoken/vitepress",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Theme a VitePress site with Instructure tokens: maps VitePress --vp-* CSS variables to var(--instui-*).",
|
|
5
|
+
"homepage": "https://pantoken.iywahl.com",
|
|
6
|
+
"bugs": "https://github.com/thedannywahl/pantoken/issues",
|
|
5
7
|
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/thedannywahl/pantoken.git",
|
|
11
|
+
"directory": "renderers/vitepress"
|
|
12
|
+
},
|
|
6
13
|
"files": [
|
|
7
14
|
"dist"
|
|
8
15
|
],
|
|
9
16
|
"type": "module",
|
|
17
|
+
"sideEffects": [
|
|
18
|
+
"**/*.css"
|
|
19
|
+
],
|
|
10
20
|
"exports": {
|
|
11
21
|
".": "./dist/index.mjs",
|
|
12
22
|
"./custom.css": "./dist/custom.css",
|
|
@@ -14,26 +24,29 @@
|
|
|
14
24
|
"./package.json": "./package.json"
|
|
15
25
|
},
|
|
16
26
|
"publishConfig": {
|
|
17
|
-
"access": "public"
|
|
18
|
-
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"@types/node": "^24.13.3",
|
|
21
|
-
"typescript": "^6.0.3",
|
|
22
|
-
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.4",
|
|
23
|
-
"vite-plus": "0.2.4",
|
|
24
|
-
"@pantoken/components": "0.1.0",
|
|
25
|
-
"@pantoken/tokens": "0.1.0",
|
|
26
|
-
"@pantoken/utils": "0.1.0"
|
|
27
|
-
},
|
|
28
|
-
"pantoken": {
|
|
29
|
-
"key": "vitepress",
|
|
30
|
-
"kind": "namespace"
|
|
27
|
+
"access": "public",
|
|
28
|
+
"provenance": true
|
|
31
29
|
},
|
|
32
30
|
"scripts": {
|
|
33
31
|
"generate": "node scripts/generate.ts",
|
|
34
|
-
"build": "vp run generate && vp pack",
|
|
35
32
|
"dev": "vp run generate && vp pack --watch",
|
|
36
33
|
"test": "vp test",
|
|
37
34
|
"check": "vp check"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@pantoken/components": "workspace:*",
|
|
38
|
+
"@pantoken/tokens": "workspace:*",
|
|
39
|
+
"@pantoken/utils": "workspace:*",
|
|
40
|
+
"@types/node": "catalog:",
|
|
41
|
+
"typescript": "catalog:",
|
|
42
|
+
"vite": "catalog:",
|
|
43
|
+
"vite-plus": "catalog:"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=22.18.0"
|
|
47
|
+
},
|
|
48
|
+
"pantoken": {
|
|
49
|
+
"key": "vitepress",
|
|
50
|
+
"kind": "namespace"
|
|
38
51
|
}
|
|
39
|
-
}
|
|
52
|
+
}
|