-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "yeti-css",
"version": "7.0.0-alpha.0",
"description": "Yeti: a CSS-first, native, zero-build layout and styling framework by Foundation.",
"license": "FSL-1.1-MIT",
"type": "module",
"homepage": "https://foundationcss.com/yeti/",
"web-types": "./dist/yeti.web-types.json",
"types": "./dist/yeti.d.ts",
"repository": "github:foundation/yeti",
"engines": {
"node": ">=24"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"style": "dist/yeti.css",
"exports": {
".": {
"types": "./dist/yeti.d.ts",
"default": "./dist/yeti.css"
},
"./css/*": "./dist/css/*",
"./js/*": "./dist/js/*",
"./themes/*": "./dist/themes/*",
"./manifest": {
"types": "./dist/yeti.manifest.d.ts",
"default": "./dist/yeti.manifest.json"
},
"./tokens": {
"types": "./dist/yeti.tokens.d.ts",
"default": "./dist/yeti.tokens.json"
}
},
"scripts": {
"build": "node bin/build.js",
"validate": "node bin/validate.js",
"docs": "node bin/gen-docs.js",
"test": "npm run validate && npm run test:tools && npm run test:browser",
"test:tools": "node --test test/tools/*.test.js",
"test:browser": "playwright test",
"screenshots:update": "playwright test test/browser/screenshots.spec.js --project=chromium --update-snapshots",
"fixtures": "node test/browser/serve.js",
"release": "node bin/release.js"
},
"devDependencies": {
"@axe-core/playwright": "^4",
"parse5": "^7",
"playwright": "^1"
}
}