-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 900 Bytes
/
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
{
"name": "@philip21/slider",
"version": "0.1.0",
"description": "low cost slider module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"keywords": [
"slider",
"slide",
"swipe",
"flick",
"responsive",
"scroll"
],
"author": {
"name": "devphilip21",
"email": "philip21.dev@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/devphilip21/philip21.js.git",
"directory": "packages/slider"
},
"scripts": {
"dev": "example=index rollup -w -c rollup.config.dev.mjs",
"build": "rollup -c rollup.config.prod.mjs",
"build:example": "example=index rollup -c rollup.config.example.mjs"
},
"dependencies": {
"@philip21/idom": "^1.5.2",
"@philip21/input": "0.1.0"
},
"devDependencies": {
"@philip21/config": "1.0.0",
"rollup": "^4.18.0"
}
}