-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 866 Bytes
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
{
"name": "@btree/react",
"version": "0.1.1",
"license": "MIT",
"description": "React hooks and DevTools component used to visualize tree.",
"author": "Kasper Mikiewicz",
"main": "dist/index.js",
"module": "dist/react.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "yarn build",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/react": "^16.9.11",
"autoprefixer": "^9.7.1",
"cssnano": "^4.1.10",
"react": "^16.11.0",
"rollup-plugin-postcss": "^2.0.3",
"tsdx": "^0.11.0",
"tslib": "^1.10.0",
"typescript": "^3.8.3"
},
"dependencies": {
"immer": "^6.0.3",
"typeface-inter": "^3.10.0",
"uuid": "^3.3.3"
}
}