-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@portabletext/vue",
"version": "1.0.11",
"description": "Render Portable Text with Vue",
"keywords": [
"portable-text"
],
"homepage": "https://github.com/portabletext/vue-portabletext#readme",
"bugs": {
"url": "https://github.com/portabletext/vue-portabletext/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/portabletext/vue-portabletext.git"
},
"license": "MIT",
"author": "Rupert Dunk <rupert@rupertdunk.com> (https://rupertdunk.com)",
"exports": {
".": {
"import": {
"types": "./dist/vue-portable-text.d.mts",
"default": "./dist/vue-portable-text.mjs"
},
"require": {
"types": "./dist/vue-portable-text.d.cts",
"default": "./dist/vue-portable-text.cjs"
}
},
"./*": "./*"
},
"main": "./dist/vue-portable-text.cjs",
"module": "./dist/vue-portable-text.mjs",
"types": "./dist/vue-portable-text.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-s clean pkg:build",
"clean": "rimraf dist coverage .nyc_output",
"format": "prettier --write --cache --ignore-unknown .",
"pkg:build": "vite build",
"postpublish": "npm run clean",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
],
"printWidth": 100,
"semi": true,
"singleQuote": true
},
"dependencies": {
"@portabletext/toolkit": "^2.0.15",
"@portabletext/types": "^2.0.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.27",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"happy-dom": "^13.10.1",
"npm-run-all2": "^5.0.2",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"rimraf": "^5.0.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"vue": "^3.3.4"
},
"packageManager": "pnpm@9.1.3",
"publishConfig": {
"access": "public",
"provenance": true
}
}