-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.47 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
{
"name": "@dpwiese/react-native-canvas-charts",
"version": "0.0.4",
"description": "WebView wrapper for using canvas based charts in React Native",
"author": "Daniel Wiese <[email protected]> (https://danielwiese.com)",
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/dpwiese/react-native-canvas-charts.git"
},
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist --extensions '.ts,.tsx' --copy-files && tsc --project tsconfig.json --emitDeclarationOnly && cp -rf package.json dist && cp -rf README.md dist",
"pack": "cd dist && npm pack && cd ..",
"lint": "eslint src --ext .ts,.tsx --fix",
"tc": "tsc --project tsconfig.json --noEmit",
"publish": "cd dist && npm publish --ignore-scripts && cd ..",
"prepublishOnly": "echo \"Error: Don't run 'npm publish' in root. Use 'npm run publish' instead.\" && exit 1"
},
"dependencies": {
"react-native-webview": "^11.2.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@react-native-community/eslint-config": "^2.0.0",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.46",
"eslint": "^7.19.0",
"typescript": "^4.1.3"
}
}