-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "@sebkolind/draggy",
"author": "sebkolind <[email protected]>",
"license": "MIT",
"version": "0.0.1",
"description": "A lightweight drag&drop library built with TypeScript.",
"source": "lib/main.ts",
"module": "dist/draggy.js",
"types": "dist/draggy.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sebkolind/draggy.git"
},
"scripts": {
"build": "rm -rf .parcel-cache dist && parcel build",
"dev": "parcel watch lib/main.ts --no-cache",
"test": "jest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@parcel/compressor-gzip": "^2.12.0",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@playwright/test": "^1.45.2",
"@testing-library/dom": "^10.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.12.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.3",
"vitepress": "^1.3.1"
}
}