-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "@yuneco/canvas-text-styled",
"author": "yuneco, https://twitter.com/yuneco",
"license": "MIT",
"version": "0.1.9",
"keywords": [
"canvas",
"text",
"styled",
"multiline"
],
"description": "Draw styled & multiline text on canvas. Supports css compatible line break and vertical vertical writing(vertical-rl).",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/yuneco/canvas-draw-styled-text.git"
},
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "vite --config sample/vite.config.sample.ts",
"build-docs": "vite --config sample/vite.config.sample.ts build && tsc",
"build": "vite build && tsc",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.6.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.3"
},
"dependencies": {
"css-line-break": "^2.1.0"
}
}