forked from solidjs-community/solid-aria
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "@solid-aria/switch",
"version": "0.1.2",
"private": false,
"description": "Primitives for building accessible switch component.",
"keywords": [
"solid",
"aria",
"headless",
"design",
"system",
"components"
],
"homepage": "https://github.com/solidjs-community/solid-aria/tree/main/packages/switch#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/toggle": "^0.1.2",
"@solid-aria/types": "^0.1.2",
"@solid-primitives/utils": "^2.1.0"
},
"devDependencies": {
"solid-js": "^1.4.4"
},
"peerDependencies": {
"solid-js": "^1.4.4"
},
"publishConfig": {
"access": "public"
},
"primitive": {
"name": "switch",
"stage": 0,
"list": [],
"category": ""
}
}