-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "@strategies/henshu",
"version": "1.1.6",
"description": "React library for editable interfaces",
"author": "Eric Youngberg <[email protected]>",
"repository": "github:sasakiassociates/henshu",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"type:watch": "tsc --watch --emitDeclarationOnly",
"type": "tsc --emitDeclarationOnly",
"build": "npm run type && npx rollup -c",
"start": "npm run type:watch | npx rollup -c -w"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/react": "^18.0.0",
"postcss": "^8.3.11",
"rollup": "^2.59.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"sass": "^1.49.7",
"typescript": "^4.4.4"
},
"dependencies": {
"@strategies/react-drag-drop": "^1.1.2",
"buffer": "^6.0.3",
"react-icons": "^4.6.0",
"react-quill": "^2.0.0-beta.4"
}
}