-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.15 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
{
"name": "interactive-surface-css",
"version": "1.1.5",
"description": "A framework-agnostic, accessible CSS interaction primitive for buttons, cards, and icon controls with token-driven theming.",
"keywords": [
"css",
"ui",
"design-system",
"accessibility",
"a11y",
"framework-agnostic",
"interaction-primitive",
"theming",
"design-tokens",
"buttons",
"cards",
"icon-button"
],
"license": "MIT",
"author": "Kyle Foster",
"repository": {
"type": "git",
"url": "git+https://github.com/Foscat/Interactive-Surface-CSS.git"
},
"bugs": {
"url": "https://github.com/Foscat/Interactive-Surface-CSS/issues"
},
"homepage": "https://foscat.github.io/Interactive-Surface-CSS/",
"type": "module",
"main": "./index.cjs",
"module": "./index.js",
"style": "./interactive-surface.css",
"unpkg": "./interactive-surface.css",
"jsdelivr": "./interactive-surface.css",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.js",
"default": "./index.js",
"style": "./interactive-surface.css"
},
"./interactive-surface.css": "./interactive-surface.css",
"./index.html": "./index.html",
"./index.cjs": "./index.cjs",
"./package.json": "./package.json"
},
"sideEffects": [
"./index.js",
"./index.cjs",
"*.css"
],
"files": [
"index.js",
"index.cjs",
"interactive-surface.css",
"index.html",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"check:no-hex-colors": "node ./scripts/check-no-hex-colors.mjs",
"lint:css": "stylelint interactive-surface.css",
"test": "playwright test --config=./playwright.config.mjs",
"test:chromium": "playwright test --config=./playwright.config.mjs --project=chromium",
"pack:dry": "npm pack --dry-run --cache ./.npm-cache",
"prepublishOnly": "npm run check:no-hex-colors && npm run lint:css && npm test && npm run pack:dry"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"stylelint": "^17.1.0",
"stylelint-config-standard": "^40.0.0"
},
"publishConfig": {
"access": "public"
}
}