-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.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
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
{
"name": "@atomico/router",
"description": "powerful router for Webcomponents, React and Preact",
"version": "3.0.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/atomicojs/router.git"
},
"author": "UpperCod",
"license": "MIT",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"build:compile": "tsc",
"build:exports": "exports \"dist/**/*\"",
"build:test": "vitest run",
"prepublishOnly": "run build:* -s"
},
"dependencies": {
"@atomico/hooks": "^4.4.0",
"atomico": "^1.79.1"
},
"devDependencies": {
"@atomico/exports": "^1.13.2",
"@atomico/run": "^0.14.2",
"@atomico/tsconfig": "^1.1.2",
"@atomico/vite": "^2.17.9",
"@formkit/auto-animate": "^0.8.1",
"jsdom": "^24.0.0",
"typescript": "^5.3.3",
"vite": "^5.2.8",
"vitest": "^1.4.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false,
"endOfLine": "lf",
"trailingComma": "none"
},
"main": "dist/router.js",
"module": "dist/router.js",
"types": "dist/index.d.ts",
"exports": {
"./core": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./router-case": {
"types": "./dist/router-case.d.ts",
"default": "./dist/router-case.js"
},
"./router-switch": {
"types": "./dist/router-switch.d.ts",
"default": "./dist/router-switch.js"
},
"./router": {
"types": "./dist/router.d.ts",
"default": "./dist/router.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"default": "./dist/utils.js"
}
},
"typesVersions": {
"*": {
"core": [
"dist/core.d.ts"
],
"router-case": [
"dist/router-case.d.ts"
],
"router-switch": [
"dist/router-switch.d.ts"
],
"router": [
"dist/router.d.ts"
],
"utils": [
"dist/utils.d.ts"
]
}
}
}