-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "activate-web",
"description": "Windows-like watermark, but for websites",
"version": "0.1.1",
"repository": "https://github.com/bnoctis/activate-web",
"author": "Blair Noctis <[email protected]>",
"main": "lib.js",
"scripts": {
"build": "tsc",
"clean": "rm -r lib.js react.js _demo/ || true",
"check-publish": "pnpm clean && pnpm build && pnpm publish --dry-run --no-git-checks",
"demo-build": "webpack -c demo.webpack.config.js && cp ./demo/vanilla.html ./demo/style.css ./lib.js _demo/",
"demo-webpack": "webpack serve -c demo.webpack.config.js",
"demo-tsc": "tsc --watch --preserveWatchOutput",
"demo-start": "concurrently pnpm:demo-webpack pnpm:demo-tsc",
"pnpm": "npm"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}