-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "@adrianbielawski/orderable-list",
"version": "0.1.17",
"description": "",
"type": "module",
"main": "./dist/orderable-list.mjs",
"module": "./dist/orderable-list.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/orderable-list.js",
"require": "./dist/orderable-list.umd.cjs"
}
},
"files": [
"dist"
],
"sourceMap": true,
"scripts": {
"build": "vite build --emptyOutDir",
"test": "jest --watch"
},
"author": "Adrian Bielawski <adrian@bielaw.ski>",
"license": "ISC",
"devDependencies": {
"@microsoft/api-extractor": "^7.36.4",
"@types/classnames": ">=2.3.1",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.6",
"@types/react": "^18.2.21",
"@vitejs/plugin-react": "^4.0.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sass": "^1.66.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.5.2"
},
"dependencies": {
"classnames": ">=2.3.1",
"immer": ">=8.0.0",
"lodash": ">=4.0.0",
"react-animate-height": ">=2.0.23",
"use-immer": ">=0.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianbielawski/orderable-list.git"
},
"bugs": {
"url": "https://github.com/adrianbielawski/orderable-list/issues"
},
"homepage": "https://github.com/adrianbielawski/orderable-list#readme",
"peerDependencies": {
"react": ">=17"
}
}