-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
98 lines (98 loc) · 2.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@apollo/explorer",
"version": "0.3.2",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/embeddable-explorer"
},
"homepage": "https://github.com/apollographql/embeddable-explorer#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12.0",
"npm": ">=7.0"
},
"scripts": {
"start": "tsdx watch",
"build": "npm run build:cjs-esm",
"build:cjs-esm": "tsdx build --format cjs,esm --name embeddable-explorer",
"build:umd": "tsdx build --format umd --entry src/index-umd.ts --name embeddable-explorer",
"test": "tsdx test --passWithNoTests",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"typescript:check": "tsc --noEmit",
"publish-changeset": "changeset publish",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
},
"module": "dist/embeddable-explorer.esm.js",
"size-limit": [
{
"path": "dist/embeddable-explorer.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/embeddable-explorer.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@changesets/changelog-github": "0.4.4",
"@changesets/cli": "2.22.0",
"@size-limit/preset-small-lib": "5.0.5",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"eslint": "8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"graphql": "15.8.0",
"husky": "7.0.4",
"prettier": "2.6.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"size-limit": "5.0.5",
"tsdx": "0.14.1",
"tslib": "2.4.0",
"typescript": "4.6.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"dependencies": {
"use-deep-compare-effect": "^1.8.1"
}
}