-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "firefox-webserial",
"description": "WebSerial for Firefox",
"version": "0.3.2",
"author": "kuba2k2",
"license": "MIT",
"private": true,
"dependencies": {
"buffer": "^6.0.3",
"python-struct": "^1.1.3",
"react": "^18.2.0",
"styled-components": "^6.0.7",
"tslib": "^2.3.1",
"typescript": "^4.5.3",
"uuid": "^9.0.0"
},
"browser": "dist/webserial.page.js",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"format-check": "prettier --check \"src/**/*.ts\" \"src/**/*.tsx\"",
"version": "cross-var replace '\\d+\\.\\d+\\.\\d+' $npm_package_version manifest.json native/install/windows_x86.nsi native/src/webserial_config.h && git add .",
"build": "gulp build",
"build:dev": "gulp build:dev",
"watch": "gulp watch",
"start": "gulp watch"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/browserify": "^12.0.37",
"@types/firefox": "^0.0.31",
"@types/firefox-webext-browser": "^111.0.1",
"@types/gulp": "^4.0.9",
"@types/gulp-concat": "0.0.33",
"@types/gulp-if": "0.0.34",
"@types/gulp-rename": "^2.0.1",
"@types/gulp-sourcemaps": "0.0.35",
"@types/gulp-uglify": "^3.0.7",
"@types/python-struct": "^1.0.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"@types/stylis": "^4.2.0",
"@types/uuid": "^9.0.2",
"@types/w3c-web-serial": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cross-var": "^1.1.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"gulp": "^4.0.2",
"gulp-bro": "^2.0.0",
"gulp-concat": "^2.6.1",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-transform": "^3.0.5",
"gulp-uglify": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"replace": "^1.2.1",
"sass": "^1.66.1",
"ts-node": "^10.4.0",
"tsify": "^5.0.4"
}
}