-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.56 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.56 KB
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
{
"name": "replace-me",
"version": "0.1.0",
"description": "[Package description here]",
"repository": {
"type": "git",
"url": "[your-git-repo]"
},
"author": "[Author Info]",
"license": "MIT",
"type": "module",
"files": [
"dist",
"src",
"types"
],
"directories": {
"lib": "/src"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"jsnext:main": "src/index.js",
"types": "types",
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "yarn clean && rollup -c --bundleConfigAsCjs",
"watch": "babel ./src -d . --ignore __mocks__,__tests__,**/*.test.js --watch",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"prettier": "prettier -c",
"push-release": "git push origin master && git push --tags",
"dtslint": "dtslint types",
"test": "snyk test && vitest run",
"test:ci": "vitest run --coverage",
"types": "tsc"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@vitest/coverage-v8": "^3.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-plugin-dev-expression": "^0.2.2",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.1.1",
"dtslint": "^4.0.6",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.2.0",
"global-jsdom": "^26.0.0",
"gzip-size": "^7.0.0",
"jsdom": "^26.1.0",
"prettier": "^3.0.3",
"pretty-bytes": "^7.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"regenerator-runtime": "^0.14.0",
"rimraf": "^6.0.1",
"rollup": "^4.6.0",
"rollup-plugin-terser": "^7.0.2",
"snyk": "^1.437.3",
"typescript": "^5.3.3",
"vitest": "^3.1.3"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}