-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "go-captcha-vue",
"version": "2.0.5",
"private": false,
"type": "module",
"license": "MIT",
"email": "[email protected]",
"author": "Awen <[email protected]>",
"description": "GoCaptcha for Vue, which implements click mode, slider mode, drag-drop mode and rotation mode.",
"keywords": [
"go-captcha-vue",
"go-captcha",
"gocaptcha",
"captcha-vue",
"vue-captcha",
"capts",
"gocapts"
],
"bugs": {
"url": "https://github.com/wenlng/go-captcha-vue/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wenlng/go-captcha-vue.git"
},
"homepage": "https://github.com/wenlng/go-captcha-vue",
"main": "dist/go-captcha-vue.umd.js",
"module": "dist/go-captcha-vue.es.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"node": "./dist/go-captcha-vue.es.js",
"default": "./dist/go-captcha-vue.es.js"
},
"require": "./dist/go-captcha-vue.es.js",
"types": "./dist/index.d.ts"
},
"./dist/*": "./dist/*",
"./env.d.ts": "./env.d.ts",
"./package.json": "./package.json"
},
"files": [
"dist/*",
"env.d.ts"
],
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build && run-p tsd",
"tsd": "vue-tsc --rootDir ./packages --declaration --emitDeclarationOnly --noEmit false --outDir ./dist",
"preview": "vite preview --port 5050",
"type-check": "vue-tsc --noEmit -p tsconfig.json"
},
"peerDependencies": {
"vue": ">=3"
},
"devDependencies": {
"@types/node": "^16.11.10",
"@vitejs/plugin-vue": "4.4.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"autoprefixer": "^10.4.19",
"fast-glob": "^3.3.2",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"npm-run-all2": "^6.2.0",
"ts-morph": "^22.0.0",
"typescript": "~5.4.0",
"vue": "^3.0.0",
"vite": "4.4.11",
"vue-tsc": "^2.0.11"
}
}