-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (96 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (96 loc) · 2.9 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
93
94
95
96
97
98
99
100
101
{
"name": "interactive-surface-css",
"version": "1.2.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",
"pack:dry": "npm pack --dry-run --cache ./.npm-cache",
"bundle": "node ./scripts/build.mjs bundle",
"minify": "node ./scripts/build.mjs minify",
"build": "node ./scripts/build.mjs",
"test": "playwright test --config=./playwright.config.mjs",
"test:chromium": "playwright test --config=./playwright.config.mjs --project=chromium",
"test:install": "playwright install --with-deps chromium firefox webkit",
"test:install:chromium": "playwright install chromium --with-deps --only-shell",
"validate:publish": "npm run check:no-hex-colors && npm run lint:css && npm run build && npm run pack:dry",
"validate:ci": "npm run validate:publish",
"validate:browsers": "npm run validate:publish && npm run test:install:chromium && npm run test:chromium",
"validate:full": "npm run validate:publish && npm run test:install && npm test",
"validate": "npm run validate:ci",
"prepublishOnly": "npm run validate:publish"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"clean-css": "~5.3.3",
"stylelint": "^17.1.0",
"stylelint-config-standard": "^40.0.0",
"ui-style-kit-css": "2.0.1"
},
"publishConfig": {
"access": "public"
},
"directories": {
"doc": "docs",
"test": "tests"
}
}