-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.75 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
63
64
65
{
"name": "@python-project-templates/uitk-svelte",
"version": "0.1.0",
"description": "Shared brand identity, design tokens, and reusable Svelte components.",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22"
},
"type": "module",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./tokens.css": "./dist/styles/tokens.css",
"./package.json": "./package.json"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package && publint",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"preview": "vite preview",
"lint": "oxlint . && oxfmt --check .",
"fix": "oxlint --fix . && oxfmt --write .",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test --update-snapshots"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.60.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.1",
"@sveltejs/package": "^2.5.5",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@types/node": "^24.0.0",
"jsdom": "^29.0.0",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"publint": "^0.3.21",
"svelte": "^5.56.0",
"svelte-check": "^4.3.0",
"typescript": "^5.9.3",
"vite": "^8.1.5",
"vitest": "^4.1.8"
}
}