forked from V-Py/svelte-kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@goodware/svelte-kanban",
"version": "1.0.0",
"engines": {
"node": ">=16.14"
},
"scripts": {
"build": "vite build && npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --write .",
"lint": "prettier --check . && eslint --report-unused-disable-directives .",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"preview": "vite preview",
"pub": "npm run build && npm publish --access=public",
"test": "npm run test:integration && npm run test:unit",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/good-ware/svelte-kanban"
},
"bugs": {
"url": "https://github.com/good-ware/svelte-kanban/issues"
},
"author": {
"name": "devguy",
"email": "[email protected]",
"url": "https://github.com/dev-guy"
},
"keywords": [
"svelte",
"kanban",
"svelte-kanban",
"js-kanban",
"drag-n-drop",
"trello-like"
],
"files": [
"./dist/**/*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"peerDependencies": {
"svelte": "^3.46.4 || ^4.0.0"
},
"devDependencies": {
"@playwright/test": "^1.37.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.22.5",
"@sveltejs/package": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.32.4",
"prettier": "^3.0.1",
"prettier-plugin-svelte": "^3.0.3",
"publint": "^0.1.16",
"sass": "^1.65.1",
"svelte": "^4.2.0",
"svelte-check": "^3.5.0",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1"
},
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts"
}