-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "qr",
"version": "0.0.0",
"description": "",
"main": "./bin/cli.js",
"bin": {
"svg": "./bin/cli.js"
},
"files": [
"bin"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"start": "npm run build && node ./bin/cli.js",
"batch": "./src/batch.sh"
},
"author": "Hunter Wilhelm",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/inquirer": "^8.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-alloy": "^4.9.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/react-dom": "^18.3.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-qr-rounded": "^1.0.0"
}
}