-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
103 lines (103 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dnd-kit-sortable-tree",
"version": "0.1.73",
"license": "MIT",
"homepage": "https://github.com/shaddix/dnd-kit-sortable-tree#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"Readme.MD"
],
"author": "Shaddix",
"types": "dist/index.d.ts",
"keywords": [
"tree",
"dndkit",
"react",
"typescript"
],
"engines": {
"node": ">=10"
},
"scripts": {
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6016",
"typecheck": "tsc --skipLibCheck",
"do-publish": "yarn version patch && yarn build && npm publish",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why",
"build-storybook": "build-storybook"
},
"dependencies": {
"clsx": "^1.2.1",
"react-merge-refs": "^2.0.1"
},
"peerDependencies": {
"@dnd-kit/core": ">=6.0.5",
"@dnd-kit/sortable": ">=7.0.1",
"@dnd-kit/utilities": ">=3.2.0",
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/dnd-kit-sortable-tree.esm.js",
"size-limit": [
{
"path": "dist/dnd-kit-sortable-tree.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/dnd-kit-sortable-tree.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.19.3",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@size-limit/preset-small-lib": "^8.1.0",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/react": "^6.5.12",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@welldone-software/why-did-you-render": "^6.2.3",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"copyfiles": "^2.3.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.12",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"postcss": "^8.4.4",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^7.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.8.4"
}
}