-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "@chialab/loock",
"version": "4.5.2",
"description": "Keyboard navigation for Web Apps and Components.",
"type": "module",
"main": "dist/loock.js",
"module": "dist/loock.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/loock.js"
}
},
"files": [
"dist",
"types",
"package.json",
"README.md",
"LICENSE"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chialab/loock.git"
},
"bugs": {
"url": "https://github.com/chialab/loock/issues"
},
"homepage": "https://github.com/chialab/loock",
"author": "Chialab <dev@chialab.io> (https://www.chialab.it)",
"scripts": {
"dev": "vite",
"build": "rimraf 'dist' 'types' && yarn types && esbuild src/index.ts --outfile=dist/loock.js --format=esm --bundle --sourcemap",
"types": "tsc --declaration --emitDeclarationOnly --declarationDir 'types' --incremental false",
"test": "playwright test",
"lint": "biome check",
"typecheck": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepack": "yarn build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@changesets/cli": "^2.24.1",
"@playwright/test": "^1.39.0",
"esbuild": "^0.25.0",
"playwright": "^1.39.0",
"publint": "^0.2.5",
"rimraf": "^5.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vitepress": "^1.0.0"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}