-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "vue-wrap-balancer",
"version": "1.2.1",
"packageManager": "pnpm@9.9.0",
"description": "Better text wrapping for Vue.",
"author": "Robert Soriano <sorianorobertc@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/vue-wrap-balancer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/vue-wrap-balancer.git"
},
"bugs": "https://github.com/wobsoriano/vue-wrap-balancer/issues",
"keywords": [
"vue",
"wrapping",
"text",
"typography"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --onSuccess=\"pnpm --filter playground dev\"",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "pnpm build && npm publish",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"dependencies": {
"nanoid": "^3.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.2.0",
"@changesets/cli": "^2.27.8",
"eslint": "^9.9.1",
"tsup": "8.2.4",
"typescript": "^5.5.4",
"vue": "^3.5.2"
}
}