-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
83 lines (83 loc) · 2.2 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
83
{
"name": "vue-datocms",
"version": "7.0.6",
"description": "A set of components and utilities to work faster with DatoCMS in Vue.js environments",
"keywords": [
"datocms",
"vue.js",
"vue",
"vuejs"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/datocms/vue-datocms.git"
},
"license": "MIT",
"author": "Stefano Verna <[email protected]>",
"contributors": [
"Silvano Stralla <[email protected]>"
],
"homepage": "https://github.com/datocms/vue-datocms",
"exports": {
".": {
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && rollup --config",
"dev": "rollup --config --watch",
"prepublishOnly": "npm run test",
"pretest": "npm run build",
"test": "jest --coverage",
"format": "npm run toc && biome format --write src examples/src",
"toc": "doctoc --github src/components src/lib"
},
"dependencies": {
"datocms-listen": "^0.1.15",
"datocms-structured-text-generic-html-renderer": "^4.0.1",
"datocms-structured-text-utils": "^4.0.1",
"hyphenate-style-name": "^1.0.4"
},
"peerDependencies": {
"@mux/mux-player": "*",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"@mux/mux-player": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@mux/mux-player": "*",
"@mux/playback-core": "^0.22.1",
"@types/hyphenate-style-name": "^1.0.2",
"@types/jest": "^29.5.11",
"@types/node": "^14.18.63",
"@vue/test-utils": "^2.4.3",
"@vuedx/typescript-plugin-vue": "^0.7.6",
"esbuild": "^0.15.18",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-serializer-vue": "^2.0.2",
"jsdom": "^19.0.0",
"np": "^9.2.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "^4.10.3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"vue-tsc": "^0.37.9",
"doctoc": "^2.0.0"
}
}