-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 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
62
63
64
65
{
"name": "vanilla-headless",
"version": "0.10.0",
"main": "build/index.js",
"type": "commonjs",
"description": "Inspired by HeadlessUi, Vanilla Headless is Web Component library that adds interactive with keyboard and mouse events",
"repository": "https://github.com/DesignByCode/vanilla-headless.git",
"homepage": "https://github.com/DesignByCode/vanilla-headless/#readme",
"bugs": {
"url": "https://github.com/DesignByCode/vanilla-headless/issues"
},
"scripts": {
"dev": "node ./esbuild.config.js",
"clean": "rd /s /q esm dist lib build .cache>nul 2>&1|echo.>nul",
"test": "jest",
"test:watch": "npm run test -- --watch",
"precommit": "npm run test && lint-staged",
"prebuild": "npm run clean",
"build": "node ./esbuild.config.js"
},
"keywords": [
"headlessui",
"popover",
"dropdown",
"dropdown-select",
"navigation toggle"
],
"author": "designbycode",
"license": "MIT",
"browserslist": [
"> .5% or last 2 versions"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chokidar": "^3.6.0",
"esbuild": "^0.16.17",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"vanilla-headless": "^0.8.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
}
}