-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.88 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
{
"name": "@widgetbot/crate",
"version": "3.7.0",
"description": "Clean & powerful popup Discord widgets for your website",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jsdelivr": "umd/crate.js",
"unpkg": "umd/crate.js",
"repository": "https://github.com/widgetbot-io/crate",
"author": "Daave <[email protected]>",
"scripts": {
"start": "parcel serve ./src/demo.html -d umd --open",
"prepublishOnly": "yarn build",
"build": "yarn build:ts && yarn build:umd",
"build:ts": "rm -rf dist && tsc && cp -r ./src/types ./dist",
"build:umd": "rm -rf umd && parcel build ./src/umd.ts -d umd -o crate.js",
"release": "yarn version && yarn build && yarn publish && yarn purge",
"purge": "tinyreq -u https://purge.jsdelivr.net/npm/@widgetbot/crate@3"
},
"dependencies": {
"@emotion/stylis": "^0.6.10",
"@widgetbot/embed-api": "^1.2.11",
"@widgetbot/react-embed": "^1.9.0",
"color": "^3.2.1",
"create-emotion": "^9.2.4",
"create-emotion-styled": "^9.2.8",
"emotion": "^9.2.4",
"emotion-theming": "^9.2.4",
"immer": "^1.3.1",
"lodash.get": "^4.4.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^5.0.3",
"react-redux": "^7.2.9",
"react-shadow": "^19.1.0",
"react-transition-group": "^4.4.5",
"redux": "^4.2.1",
"redux-actions": "^2.6.5",
"reflect-metadata": "^0.1.13",
"typescript": "4.1.3"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/react": "^17.0.64",
"@types/react-dom": "^17.0.20",
"@types/react-redux": "^6.0.21",
"@types/react-transition-group": "^2.0.11",
"@types/redux-actions": "^2.6.2",
"babel-core": "^6.26.3",
"babel-plugin-emotion": "^9.2.4",
"husky": "^0.14.3",
"parcel": "1.12.3",
"pretty-quick": "^1.6.0",
"tinyreq-cli": "^1.1.3"
}
}