-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "laser-pen",
"version": "1.0.1",
"description": "a tool set to help you draw mouse track in web canvas",
"keywords": [
"mouse track",
"canvas",
"bezier",
"laser pen"
],
"main": "dist/index.bundle.js",
"types": "dist/index.d.ts",
"author": "SilentTiger <[email protected]> (https://github.com/SilentTiger)",
"license": "MIT",
"homepage": "https://silenttiger.github.io/laser-pen/",
"repository": {
"type": "git",
"url": "https://github.com/SilentTiger/laser-pen.git"
},
"scripts": {
"start": "webpack serve",
"build": "rm -rf ./node_modules/.cache && NODE_ENV=production webpack",
"build:demo": "rm -rf ./node_modules/.cache && NODE_ENV=demo webpack",
"lint": "npx eslint ./src/**/*.ts ./example/*.ts",
"lint:fix": "npx eslint ./src/**/*.ts ./example/*.ts --fix"
},
"devDependencies": {
"@types/bezier-js": "^4.1.0",
"@types/qrcode": "^1.4.2",
"@types/simple-peer": "^9.11.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"bezier-js": "^5.1.0",
"clean-webpack-plugin": "^4.0.0",
"clipboard": "^2.0.10",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^8.0.0",
"eslint-config-alloy": "^4.3.0",
"eslint-loader": "^4.0.2",
"html-webpack-plugin": "^5.3.2",
"prettier": "^2.4.1",
"qrcode": "^1.5.0",
"simple-peer": "^9.11.1",
"socket.io-client": "^4.4.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.58.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"files": [
"dist"
]
}