-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.57 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
{
"name": "@python-project-templates/uitk-webawesome",
"version": "0.1.0",
"description": "Shared brand identity, design tokens, and reusable Lit and Web Awesome components.",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22"
},
"type": "module",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./tokens.css": "./dist/tokens.css",
"./package.json": "./package.json"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc -p tsconfig.build.json --emitDeclarationOnly && publint",
"check": "tsc --noEmit",
"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": {
"@awesome.me/webawesome": "^3.11.0",
"lit": "^3.3.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.60.0",
"@awesome.me/webawesome": "^3.11.0",
"lit": "^3.3.3",
"@types/node": "^24.0.0",
"jsdom": "^29.0.0",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"publint": "^0.3.21",
"typescript": "^5.9.3",
"vite": "^8.1.5",
"vitest": "^4.1.8"
}
}