-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "react-faq-generator",
"version": "1.1.1",
"description": "A simple FAQ section generator in react applications",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/alim1496/react-faq-generator"
},
"homepage": "https://github.com/alim1496/react-faq-generator",
"scripts": {
"clean": "rimraf dist/",
"watch": "rollup -c -w --bundleConfigAsCjs",
"build": "npm run clean && rollup -c --bundleConfigAsCjs",
"test": "vitest"
},
"keywords": [
"React",
"Typescript",
"FAQ"
],
"author": "M A Alim",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.17",
"jsdom": "^22.1.0",
"postcss": "^8.4.27",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
}
}