-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "solid-custom-navigation",
"version": "0.2.0",
"description": "Custom navigations for Solid written in Typescript. Implement custom page transition logic and ✨ animations ✨",
"main": "dist/index/index.common.js",
"module": "dist/index/index.module.js",
"types": "dist/index/index.d.ts",
"author": "Dirag Biswas (https://github.com/diragb)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/diragb"
},
"repository": {
"type": "git",
"url": "https://github.com/diragb/solid-custom-navigation"
},
"bugs": {
"url": "https://github.com/diragb/solid-custom-navigation/issues"
},
"homepage": "https://github.com/diragb/solid-custom-navigation#readme",
"scripts": {
"build": "rollup -c rollup.config.js"
},
"dependencies": {
"solid-styled-components": "^0.28.4"
},
"peerDependencies": {
"solid-app-router": "^0.4.1",
"solid-js": "^1.4.6"
},
"exports": {
".": {
"solid": "./dist/index/index.js",
"import": "./dist/index/index.module.js",
"browser": "./dist/index/index.module.js",
"require": "./dist/index/index.common.js",
"node": "./dist/index/index.common.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"navigation",
"animation",
"solid",
"custom navigation",
"ui",
"typescript"
],
"license": "MIT",
"devDependencies": {
"esbuild-plugin-solid": "^0.4.2",
"rollup": "^2.75.7",
"rollup-preset-solid": "^1.4.0",
"typescript": "^4.7.4"
}
}