-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "@algolia/coquille",
"description": "A React component that renders a terminal on the browser",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/coquille.git"
},
"bugs": {
"url": "https://github.com/algolia/coquille/issues"
},
"homepage": "https://github.com/algolia/coquille#readme",
"version": "0.0.29",
"author": "Loïc Say",
"license": "ISC",
"keywords": [
"coquille",
"shell",
"terminal",
"react"
],
"scripts": {
"start": "vite",
"test": "vitest",
"build": "rm -rf dist && pnpm build:css && rollup -c",
"build:css": "tailwind -o dist/index.css --minify -c src/Coquille/tailwind.config.cjs",
"build:demo": "vite build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "18.0.11",
"@vitejs/plugin-react": "3.1.0",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.2.7",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"peerDependencies": {
"react": "^18.2.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./index.css": "./dist/index.css"
}
}