-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
101 lines (101 loc) · 2.92 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "typeahead-standalone",
"type": "module",
"title": "typeahead-standalone",
"description": "A fast fully-featured standalone autocomplete library",
"version": "5.4.0",
"homepage": "https://typeahead.digitalfortress.tech",
"license": "MIT",
"scripts": {
"dev": "vite",
"prod": "vite build --mode production",
"watch": "vite build --watch.exclude 'node_modules/**'",
"preview": "vite preview",
"tag": "npm version minor --no-git-tag-version && npm run prod && PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git commit -am \"$PACKAGE_VERSION release\" && git tag v$PACKAGE_VERSION",
"test:dev": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test-e2e-gui": "pnpm cy:open",
"test-e2e": "pnpm cy:run",
"cy:run": "npx cypress run --headless --browser chrome",
"cy:open": "npx cypress open --browser chrome",
"lint": "eslint ./src --ext .ts --fix",
"copy-dts-declarations": "copyfiles -u 1 \"src/**/*.d.*ts\" dist"
},
"author": {
"name": "Niket Pathak",
"email": "[email protected]",
"url": "https://niketpathak.com"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/typeahead-standalone.es.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/typeahead-standalone.umd.js"
}
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"main": "./dist/typeahead-standalone.umd.js",
"module": "./dist/typeahead-standalone.es.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/digitalfortress-tech/typeahead-standalone.git"
},
"bugs": {
"url": "https://github.com/digitalfortress-tech/typeahead-standalone/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/digitalfortress-tech/typeahead-standalone/blob/master/LICENSE"
}
],
"files": [
"dist/"
],
"keywords": [
"typeahead",
"autocomplete",
"auto-complete",
"auto-search",
"typeahead search",
"bloodhound",
"suggestion engine",
"auto select",
"typeahead search",
"suggest",
"suggestions",
"autosuggest",
"search",
"word completion",
"twitter typeahead",
"typeahead-standalone.js"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"axe-core": "^4.9.1",
"copyfiles": "^2.4.1",
"cypress": "^13.10.0",
"cypress-axe": "^1.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-prettier": "^5.1.3",
"less": "^4.2.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
}
}