forked from MaxLeiter/sortablejs-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "sortablejs-vue3",
"version": "1.2.5",
"author": {
"email": "[email protected]",
"name": "Max Leiter",
"url": "https://maxleiter.com"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/MaxLeiter/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maxleiter/sortablejs-vue3"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly --project tsconfig.dist.json && mv dist/lib dist/types && rm -rf dist/favicon.ico",
"build:site": "vue-tsc --noEmit --project tsconfig.site.json && vite --config vite.site.config.ts build",
"preview": "vite preview",
"lint": "yarn prettier --write '**/*.{ts,vue,json}'"
},
"types": "./dist/types/main.d.ts",
"files": [
"dist"
],
"main": "./dist/sortablejs-vue3.umd.js",
"module": "./dist/sortablejs-vue3.es.js",
"exports": {
".": {
"import": "./dist/sortablejs-vue3.es.js",
"require": "./dist/sortablejs-vue3.umd.js"
}
},
"dependencies": {
"sortablejs": "^1.15.0",
"vue": "^3.2.37"
},
"peerDependencies": {
"sortablejs": "^1.15.0",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/sortablejs": "1.15.0",
"@vitejs/plugin-vue": "4.0.0",
"prettier": "2.8.1",
"terser": "5.16.1",
"typescript": "4.9.4",
"vite": "4.0.4",
"vue-tsc": "1.0.21"
}
}