-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "react-spotlight-tour",
"version": "1.1.0",
"description": "Self-configuring product tour library for React",
"main": "index.js",
"scripts": {
"build": "tsc && cp -r dist/* .",
"clean": "rm *.js *.d.ts",
"format": "prettier --write .",
"check": "npm run check:prettier && npm run check:typescript",
"check:prettier": "prettier --check .",
"check:typescript": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RevereCRE/react-spotlight-tour.git"
},
"keywords": [
"react",
"tutorial",
"tour"
],
"author": "Ryan Delaney",
"license": "MIT",
"bugs": {
"url": "https://github.com/RevereCRE/react-spotlight-tour/issues"
},
"homepage": "https://github.com/RevereCRE/react-spotlight-tour#readme",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@types/node": "^15.9.0",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"typescript": "^4.3.2"
},
"files": [
"*.js",
"*.d.ts"
]
}