-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
80 lines (80 loc) · 1.8 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
{
"name": "v-perfect-signature",
"type": "module",
"version": "1.4.0",
"description": "Perfect pressure-sensitive signature drawing for Vue 2 and 3",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/v-perfect-signature#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/v-perfect-signature.git"
},
"keywords": [
"vue",
"signature",
"pad",
"freehand"
],
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"files": [
"dist",
"nuxt.mjs"
],
"scripts": {
"dev": "tsup --watch --onSuccess \"pnpm --filter playground dev\"",
"build": "tsup",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"release": "bumpp && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"@vue/composition-api": "^1.7.1",
"vue": "^2.6.14 || ^3.2.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"perfect-freehand": "^1.2.0",
"vue-demi": "^0.14.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.5",
"@vue/test-utils": "2.4.1",
"bumpp": "^9.2.1",
"canvas": "^2.11.2",
"eslint": "^8.55.0",
"jsdom": "^23.0.1",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4",
"vitest-canvas-mock": "^0.3.3",
"vue": "^3.3.11"
}
}