-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.15 KB
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
{
"name": "vue-tweet",
"description": "Embed tweets just by giving the ID of a Tweet",
"version": "2.4.0",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/vue-tweet.umd.cjs",
"module": "./dist/vue-tweet.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/vue-tweet.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/vue-tweet.umd.cjs"
}
}
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run copy-types",
"preview": "vite preview",
"build-only": "vite build",
"generate-types": "vue-tsc -p tsconfig.app.json --declaration --emitDeclarationOnly --declarationDir dist && npm run copy-types",
"type-check": "vue-tsc --build --noEmit",
"lint": "oxlint",
"generate-tag": "np --no-2fa --no-tests --no-publish",
"publish-package": "npm run type-check && npm run lint && npm run build && npm run generate-types && npm run generate-tag && npm publish --access public",
"copy-types": "cp ./dist/index.d.ts ./dist/index.d.cts",
"test": "playwright test"
},
"peerDependencies": {
"vue": "^3.5.29"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tsconfig/node20": "^20.1.9",
"@types/node": "^25.3.5",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/tsconfig": "^0.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"np": "^11.0.2",
"oxlint": "^1.51.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-vue-devtools": "^8.0.7",
"vue-tsc": "^3.2.5"
},
"keywords": [
"vue",
"vue-2",
"vue-3",
"vue-tweet",
"vue3-tweet",
"vue-tweet",
"twitter-tweet",
"embed",
"twitter",
"twitter-widget",
"twitter-embed",
"vue-tweet"
],
"author": "Danny Feliz <dannyfeliz08@gmail.com>",
"license": "MIT",
"bugs": "https://github.com/DannyFeliz/vue-tweet/issues/new",
"repository": {
"type": "git",
"url": "https://github.com/DannyFeliz/vue-tweet"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "oxlint"
}
}