@slogvo/vue-notion 0.1.0 → 0.2.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/build/{CollectionCard.vue_vue_type_script_setup_true_lang-14wiD7gP.js → CollectionCard.vue_vue_type_script_setup_true_lang-CKc3aa-Q.js} +2 -2
- package/build/{CollectionViewBoard-CgsTRxVb.js → CollectionViewBoard-iUYxAnRz.js} +3 -3
- package/build/{CollectionViewGallery-B_vTmafL.js → CollectionViewGallery-Cbq2Spsg.js} +3 -3
- package/build/{CollectionViewList-D3G1ACy1.js → CollectionViewList-BX2TvKSQ.js} +2 -2
- package/build/{CollectionViewTable-UDQc6cpa.js → CollectionViewTable-CTH-HIZh.js} +2 -2
- package/build/{collection-utils-Cqo2kyVg.js → collection-utils-7wJN6y6q.js} +1 -1
- package/build/components/NotionRenderer.vue.d.ts +2 -0
- package/build/{index-BNMgDI2p.js → index-BVgFvBYW.js} +506 -501
- package/build/index.js +1 -1
- package/build/index.umd.cjs +2 -2
- package/build/types.d.ts +1 -0
- package/package.json +16 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slogvo/vue-notion",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Fast and accurate Vue renderer for Notion.",
|
|
6
6
|
"repository": "slogvo/vue-notion",
|
|
@@ -43,13 +43,23 @@
|
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=20"
|
|
45
45
|
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "vite build && node -e \"const fs = require('fs'); fs.copyFileSync('src/styles.css', 'build/styles.css')\"",
|
|
48
|
+
"dev": "vite build --watch",
|
|
49
|
+
"watch": "vite build --watch",
|
|
50
|
+
"clean": "del build",
|
|
51
|
+
"test": "run-s test:*",
|
|
52
|
+
"test:lint": "eslint .",
|
|
53
|
+
"test:typecheck": "vue-tsc --noEmit",
|
|
54
|
+
"test:unit": "vitest run --passWithNoTests"
|
|
55
|
+
},
|
|
46
56
|
"dependencies": {
|
|
47
57
|
"katex": "^0.16.11",
|
|
48
58
|
"lodash.throttle": "^4.1.1",
|
|
49
59
|
"medium-zoom": "^1.1.0",
|
|
50
|
-
"
|
|
51
|
-
"@slogvo/notion-
|
|
52
|
-
"
|
|
60
|
+
"@slogvo/notion-types": "^0.1.0",
|
|
61
|
+
"@slogvo/notion-utils": "^0.1.0",
|
|
62
|
+
"prismjs": "^1.29.0"
|
|
53
63
|
},
|
|
54
64
|
"devDependencies": {
|
|
55
65
|
"@types/lodash.throttle": "^4.1.7",
|
|
@@ -65,15 +75,6 @@
|
|
|
65
75
|
},
|
|
66
76
|
"optionalDependencies": {
|
|
67
77
|
"vue-pdf-embed": "^2.1.1"
|
|
68
|
-
},
|
|
69
|
-
"scripts": {
|
|
70
|
-
"build": "vite build && node -e \"const fs = require('fs'); fs.copyFileSync('src/styles.css', 'build/styles.css')\"",
|
|
71
|
-
"dev": "vite build --watch",
|
|
72
|
-
"watch": "vite build --watch",
|
|
73
|
-
"clean": "del build",
|
|
74
|
-
"test": "run-s test:*",
|
|
75
|
-
"test:lint": "eslint .",
|
|
76
|
-
"test:typecheck": "vue-tsc --noEmit",
|
|
77
|
-
"test:unit": "vitest run --passWithNoTests"
|
|
78
78
|
}
|
|
79
|
-
}
|
|
79
|
+
}
|
|
80
|
+
|