-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
83 lines (83 loc) · 2.22 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
80
81
82
83
{
"name": "wikidata-graph-builder",
"version": "2.0.0",
"description": "Visualize Wikidata item graphs using d3.js",
"author": "AngryLoki",
"keywords": [
"wikidata",
"d3"
],
"homepage": "https://angryloki.github.io/wikidata-graph-builder/",
"bugs": "https://github.com/AngryLoki/wikidata-graph-builder/issues",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/AngryLoki/wikidata-graph-builder/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/AngryLoki/wikidata-graph-builder.git"
},
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "xo",
"deploy": "vite build && npx gh-pages -t -d build"
},
"devDependencies": {
"@floating-ui/dom": "^1.2.0",
"@mdi/js": "^7.1.96",
"@qix/elkjs-patched": "0.8.0-patch3",
"@sveltejs/adapter-static": "^1.0.6",
"@sveltejs/kit": "^1.3.10",
"@tailwindcss/forms": "^0.5.3",
"@types/d3-drag": "^3.0.2",
"@types/d3-scale": "^4.0.3",
"@types/d3-selection": "^3.0.4",
"@types/d3-zoom": "^3.0.2",
"@types/lodash.escape": "^4.0.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.throttle": "^4.1.7",
"autoprefixer": "^10.4.13",
"canvas-color-tracker": "^1.1.6",
"d3-drag": "^3.0.0",
"d3-force-3d": "^3.0.3",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"lodash.escape": "^4.0.1",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"postcss": "^8.4.21",
"svelte": "^3.55.1",
"svelte-awesome-color-picker": "^2.4.1",
"svelte-check": "^3.0.3",
"svelte-floating-ui": "^1.2.8",
"svelte-intersection-observer": "^0.10.0",
"svelte-useactions": "^1.0.2",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.2.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"xo": "^0.59.3"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=9.0.0"
},
"type": "module",
"xo": {
"rules": {
"import/extensions": "off",
"n/file-extension-in-import": "off",
"@typescript-eslint/no-unsafe-assignment": "off"
}
}
}