-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
62 lines (62 loc) · 2.01 KB
/
Copy pathdeno.json
File metadata and controls
62 lines (62 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@vski/table",
"nodeModulesDir": "auto",
"tasks": {
"dev": "vite",
"install-ci": "echo \"$SSH_DEPLOY_KEY\" | base64 --decode > ~/id_rsa_deploy1 && chmod 600 ~/id_rsa_deploy1 && GIT_SSH_COMMAND=\"ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ~/id_rsa_deploy1\" git clone ssh://git@git.vski.sh/x/table-modules.git enterprise",
"build": "vite build",
"llms": "deno -A bin/llms.mjs enterprise/tools.ts enterprise/tools.json",
"test": "vitest"
},
"imports": {
"@/": "./",
"@enterprise/": "./enterprise/",
"@deno/dnt": "jsr:@deno/dnt@^0.42.3",
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
"@faker-js/faker": "npm:@faker-js/faker@^10.1.0",
"@floating-ui/dom": "npm:@floating-ui/dom@^1.7.4",
"@google/generative-ai": "npm:@google/generative-ai@^0.15.0",
"@xmod": "jsr:@nesterow/xmod@^0.1.8",
"@preact/preset-vite": "npm:@preact/preset-vite@^2.10.2",
"@preact/signals": "npm:@preact/signals@^2.5.1",
"@std/assert": "jsr:@std/assert@1",
"@tailwindcss/typography": "npm:@tailwindcss/typography@^0.5.19",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.1.16",
"daisyui": "npm:daisyui@^5.3.8",
"lucide-react": "npm:lucide-react@^0.546.0",
"preact": "npm:preact@^10.27.2",
"preact-iso": "npm:preact-iso@^2.11.0",
"tailwindcss": "npm:tailwindcss@^4.1.16",
"vite": "npm:vite@^7.1.12",
"vitest": "npm:vitest@^2.0.4",
"@testing-library/preact": "npm:@testing-library/preact@^3.2.4",
"jsdom": "npm:jsdom@^24.1.1"
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]
}
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "dom.iterable", "deno.ns"],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"meta",
"script",
"link",
"style",
"base",
"noscript",
"template"
],
"types": ["vite/client"]
}
}