-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.43 KB
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
{
"name": "dnd-manager",
"version": "1.2.0",
"homepage": "https://itsjavi.com/dnd-manager",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjavi/dnd-manager.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
}
},
"scripts": {
"dev": "pnpm --filter dnd-manager-demo dev",
"build": "tsdown src/index.ts --dts --sourcemap --format esm --clean",
"build:watch": "pnpm build --watch",
"build:demo": "pnpm --filter dnd-manager-demo build",
"build:all": "pnpm build && pnpm build:demo",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"prepublishOnly": "pnpm typecheck && pnpm build && publint && npm login",
"test": "vitest --run",
"test:coverage": "pnpm build && vitest --run --coverage",
"test:e2e": "pnpm build && vitest --project e2e",
"test:unit": "vitest --project unit",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"oxfmt": "^0.43.0",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}