-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
68 lines (68 loc) · 1.72 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
{
"version": "0.2.5",
"private": true,
"description": "Drag and drop package.",
"main": "./index.cjs",
"types": "./index.d.cts",
"type": "module",
"scripts": {
"tests": "cd tests && pnpm run dev",
"tests-frameworks": "cd tests-frameworks && pnpm run dev",
"docs": "cd docs && pnpm run dev",
"build": "jiti build.ts",
"release": "npx bumpp --no-tag --no-push --no-commit && pnpm run build && cd dist && npx publint && pnpm publish --no-git-checks",
"lint": "eslint ."
},
"packages": [],
"keywords": [],
"author": "Sasha Milenkovic <[email protected]>",
"license": "MIT",
"devDependencies": {
"@formkit/drag-and-drop": "^0.2.3",
"@playwright/test": "^1.42.1",
"@types/react": "^18.2.73",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"bumpp": "^9.4.0",
"esbuild-plugin-replace": "^1.4.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.24.0",
"jiti": "^1.21.0",
"pathe": "^1.1.2",
"publint": "^0.2.7",
"tailwind": "^4.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"exports": {
"./vue": {
"require": {
"types": "./vue/index.d.cts",
"default": "./vue/index.cjs"
},
"import": {
"types": "./vue/index.d.ts",
"default": "./vue/index.mjs"
}
},
"./react": {
"require": {
"types": "./react/index.d.cts",
"default": "./react/index.cjs"
},
"import": {
"types": "./react/index.d.ts",
"default": "./react/index.mjs"
}
},
".": {
"require": {
"types": "./index.d.cts",
"default": "./index.cjs"
},
"import": {
"types": "./index.d.ts",
"default": "./index.mjs"
}
}
}
}