-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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
{
"name": "@ldzn/js-captcha",
"type": "module",
"version": "0.0.10",
"packageManager": "[email protected]",
"description": "",
"author": "Soya <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Soya-xy/captcha#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Soya-xy/captcha.git"
},
"bugs": "https://github.com/Soya-xy/captcha/issues",
"keywords": [
"captcha",
"javascript",
"slide-captcha"
],
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js"
},
"./style.css": "./dist/style.css"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@antfu/ni": "^0.16.2",
"@types/node": "^18.0.0",
"bumpp": "^8.2.1",
"eslint": "^8.18.0",
"pnpm": "^7.2.1",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vite-plugin-dts": "^1.2.0"
}
}