-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.42 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dddice-stream-deck-plugin",
"version": "0.3.2",
"description": "Roll 3D digital dice from your steam deck.",
"repository": "git@github.com:dddice/dddice-stream-deck-plugin.git",
"author": "dddice <developers@dddice.com>",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"build": "parcel build --target default --dist-dir=com.dddice.app.sdPlugin --public-url ./",
"lint": "eslint src --fix",
"start": "parcel watch --target default --dist-dir=com.dddice.app.sdPlugin --public-url ./",
"dddice-js": "xcopy \\\\wsl$\\Ubuntu\\home\\celestebloodreign\\dddice\\www\\public\\js node_modules\\dddice-js\\ /y && xcopy \\\\wsl$\\Ubuntu\\home\\celestebloodreign\\dddice\\www\\public\\js\\types\\js\\@dice\\ node_modules\\dddice-js\\types /y",
"clean": "rm -rf .parcel-cache && rm -rf com.dddice.app.sdPlugin/.*"
},
"source": [
"src/dddice.ts",
"src/PropertyInspector.tsx",
"src/dddice.css"
],
"targets": {
"default": {
"outputFormat": "global",
"engines": {
"browsers": "> 0.5%, last 2 versions, not dead"
}
}
},
"dependencies": {
"classnames": "^2.3.2",
"dddice-js": "^0.17.23",
"lodash-es": "^4.17.21",
"react-tooltip": "^5.22.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@parcel/transformer-svg-react": "^2.8.0",
"@parcel/validator-typescript": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"axios": "^0.27.2",
"buffer": "^5.7.1",
"crypto-browserify": "^3.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.1",
"parcel": "^2.10.2",
"parcel-reporter-static-files-copy": "^1.4.0",
"prettier": "^2.8.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.3"
},
"keywords": [
"dddice",
"dice",
"browser"
],
"license": "ISC",
"lint-staged": {
"{**/*,*}.{css,json,html}": [
"prettier --write"
],
"*.ts*": [
"eslint --fix",
"prettier --write"
]
},
"volta": {
"node": "18.12.1",
"npm": "9.1.2"
},
"staticFiles": {
"staticPath": "static"
}
}