forked from solidjs-community/solid-aria
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "@solid-aria/listbox",
"version": "0.2.0",
"private": false,
"description": "Primitives for building accessible listbox component.",
"keywords": [
"solid",
"aria",
"headless",
"design",
"system",
"components"
],
"homepage": "https://github.com/solidjs-community/solid-aria/tree/main/packages/listbox#readme",
"bugs": {
"url": "https://github.com/solidjs-community/solid-aria/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-aria.git"
},
"license": "MIT",
"author": "Fabien Marie-Louise <[email protected]>",
"contributors": [],
"sideEffects": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev": "vite serve dev --host",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@solid-aria/collection": "^0.2.0",
"@solid-aria/focus": "^0.1.4",
"@solid-aria/interactions": "^0.1.4",
"@solid-aria/label": "^0.1.4",
"@solid-aria/list": "^0.1.4",
"@solid-aria/selection": "^0.1.5",
"@solid-aria/types": "^0.1.4",
"@solid-aria/utils": "^0.2.1",
"@solid-primitives/platform": "^0.0.100",
"@solid-primitives/props": "^2.1.7",
"@solid-primitives/utils": "^2.1.0"
},
"devDependencies": {
"solid-js": "^1.4.4"
},
"peerDependencies": {
"solid-js": "^1.4.4"
},
"publishConfig": {
"access": "public"
},
"primitive": {
"name": "listbox",
"stage": 0,
"list": [],
"category": ""
}
}