-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.92 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
{
"name": "@ap.cx/react-scrollama-wrapper",
"version": "4.1.1",
"private": false,
"description": "react scrollama wrapper",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.esm.js",
"require": "./lib/index.js"
}
},
"files": [
"lib"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/thierryc/react-scrollama-wrapper.git"
},
"keywords": [
"react",
"scrollama",
"wrapper"
],
"bugs": {
"url": "https://github.com/thierryc/react-scrollama-wrapper/issues"
},
"homepage": "https://github.com/thierryc/react-scrollama-wrapper#readme",
"directories": {
"example": "example"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"dev": "rollup --config rollup.config.mjs -w",
"prepublishOnly": "npm run build",
"predeploy": "cd ./gh-pages && npm install && npm run export",
"deploy": "touch ./gh-pages/out/.nojekyll && gh-pages -d ./gh-pages/out -t true",
"link": "npm run build && npm link && cd ./gh-pages && npm link @ap.cx/react-scrollama-wrapper",
"generate-dts": "dts-gen -m @ap.cx/react-scrollama-wrapper -f lib/index.d.ts"
},
"author": "thierryc",
"license": "MIT",
"dependencies": {
"scrollama": "^3.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scrollama": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^12.1.0",
"gh-pages": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.21.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}