-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 KB
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
{
"name": "devbridge-autocomplete",
"version": "2.0.2",
"description": "Autocomplete provides suggestions while you type into the text field.",
"homepage": "https://github.com/devbridge/jQuery-Autocomplete",
"author": "Tomas Kirda (https://twitter.com/tkirda)",
"main": "dist/jquery.autocomplete.js",
"module": "dist/jquery.autocomplete.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/jquery.autocomplete.esm.js",
"require": "./dist/jquery.autocomplete.js"
}
},
"license": "MIT",
"keywords": [
"jquery-plugin"
],
"scripts": {
"build": "node scripts/build.mjs",
"format": "prettier --write ./src ./test ./scripts/build.mjs",
"format:check": "prettier --check ./src ./test ./scripts/build.mjs",
"lint": "eslint ./test ./scripts/build.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git://github.com/devbridge/jQuery-Autocomplete.git"
},
"peerDependencies": {
"jquery": ">=3.0"
},
"devDependencies": {
"@types/jquery": "^3.5.32",
"esbuild": "^0.28.0",
"eslint": "^9.30.1",
"jquery": "^3.7.1",
"jquery-mockjax": "^2.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vitest": "^4.1.6"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"tabWidth": 4
},
"files": [
"dist/",
"readme.md",
"LICENSE"
]
}