-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
36 lines (36 loc) · 959 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
{
"name": "@sjmc11/tourguidejs",
"version": "0.0.19",
"description": "A customizable tour guide library for front-end applications.",
"homepage": "https://tourguidejs.com",
"main": "dist/tour.js",
"types": "src/Tour.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --config webpack.config.js --watch",
"build": "webpack --config webpack.config.js && cp src/Tour.d.ts dist/tour.d.ts"
},
"keywords": [
"tour"
],
"author": "JC",
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.0.3",
"sass": "^1.55.0"
},
"devDependencies": {
"@types/node": "^18.11.7",
"file-loader": "^6.2.0",
"node-sass": "^8.0.0",
"sass-loader": "^13.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sjmc11/tourguide-js"
}
}