-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@accosine/xanadu",
"version": "0.0.0",
"author": "Duncan Kolba <duncankolba@gmail.com>",
"description": "Xanadu Web Components",
"type": "module",
"main": "dist/index.js",
"license": "SEE LICENSE IN LICENSE",
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/accosine/xanadu.git"
},
"scripts": {
"build": "npm run build:components && npm run build:storybook",
"build:components": "vite build",
"build:storybook": "storybook build",
"dependencies:list-outdated": "npm-check-updates --format repo --peer",
"dependencies:update": "npm-check-updates --peer -u && npm install",
"dev": "vite",
"lint": "npm run lint:code && npm run lint:styles && npm run lint:slowtypes",
"lint:code": "eslint --cache --cache-location ./node_modules/.cache/eslint ./src ./stories",
"lint:styles": "stylelint src/**/*.{css,styles.js}",
"lint:slowtypes": "jsr publish --dry-run --allow-dirty",
"storybook": "storybook dev -p 6006",
"test": "playwright test",
"test:regenerate": "playwright test --update-snapshots",
"test:changed": "playwright test --only-changed",
"typecheck": "tsc",
"ok": "npm run typecheck && npm run lint && npm run coverage && npm run build",
"format": "prettier --write src stories",
"coverage:clean": "npx rimraf .nyc_output coverage",
"coverage": "npm run coverage:clean && npm run coverage:collect && npm run coverage:report:text && npm run coverage:check",
"coverage:check": "npx nyc check-coverage",
"coverage:collect": "npm run test",
"coverage:report:html": "npx nyc report --reporter=html",
"coverage:report:text": "npx nyc report --reporter=text",
"coverage:serve": "npx http-server coverage"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@efficientcss/stylelint-config-ecss": "1.0.0-beta-14",
"@eslint/js": "10.0.1",
"@playwright/test": "1.62.1",
"@storybook/web-components": "10.5.5",
"@storybook/web-components-vite": "10.5.5",
"@storybook/addon-docs": "10.5.5",
"browserslist": "4.28.7",
"eslint": "10.6.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "18.2.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-storybook": "10.5.5",
"eslint-plugin-unicorn": "65.0.1",
"eslint-plugin-wc": "3.1.0",
"globals": "17.7.0",
"jsr": "0.14.3",
"lightningcss": "1.33.0",
"lit": "3.3.3",
"nyc": "18.0.0",
"prettier": "3.9.5",
"rimraf": "6.1.3",
"storybook": "10.5.5",
"stylelint": "16.26.1",
"stylelint-config-standard": "39.0.1",
"stylelint-prettier": "5.0.3",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0",
"vite": "8.1.5",
"vite-plugin-dts": "5.0.3",
"vite-plugin-istanbul": "9.0.1"
},
"contributors": [
{
"name": "Duncan Kolba",
"email": "duncankolba@gmail.com"
}
],
"keywords": [
"web components"
],
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 80
},
"files": [
"dist"
]
}