-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
66 lines (66 loc) · 1.54 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
{
"name": "lazy-brush",
"version": "2.0.2",
"description": "Lazy brush - smooth drawing using mouse or finger",
"type": "module",
"files": [
"lib"
],
"main": "./lib/lazy-brush.umd.cjs",
"module": "./lib/lazy-brush.js",
"types": "./lib/main.d.ts",
"exports": {
".": {
"import": {
"default": "./lib/lazy-brush.js",
"types": "./lib/main.d.ts"
},
"require": {
"default": "./lib/lazy-brush.umd.cjs",
"types": "./lib/main.d.ts"
}
}
},
"keywords": [
"brush",
"mouse",
"lazy",
"canvas",
"drawing",
"smooth",
"pencil",
"string",
"radius"
],
"repository": "https://github.com/dulnan/lazy-brush",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "vite -c ./vite.config-demo.ts --host",
"build": "tsc && vite build",
"build:demo": "vite-ssg -c ./vite.config-demo.ts build",
"preview": "vite -c ./vite.config-demo.ts preview",
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage"
},
"author": "Jan Hug <me@dulnan.net>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.26.3",
"autoprefixer": "^10.4.13",
"catenary-curve": "^2.0.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vite-ssg": "^0.22.1",
"vitest": "^0.26.3",
"vue-tsc": "^1.0.22"
}
}