-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 KB
/
package.json
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
{
"name": "@lookback/lookbook",
"version": "6.5.0",
"description": "The design system of Lookback",
"main": "index.js",
"types": "dist/types.d.ts",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"start": "scripts/watch",
"test": "[ -z \"$CI\" ] && pa11y ./test/test.html || mkdir -p test-output && cp dist/lookbook.css test/lookbook.css && pa11y -S ./test-output/screenshot.png --config test/pa11y.config.json -r html ./test/test.html > test-output/results.html",
"build": "mkdir dist && cp colors.json dist/colors.json && scripts/build --full && npm run generate-types",
"update-colors": "scripts/fetch-figma-colors && npm run generate-types",
"generate-types": "scripts/generate-types",
"dist": "scripts/distribute \"dist/*.{css,json}\"",
"prepublishOnly": "npm run build",
"sizes": "mkdir -p sizes && ./scripts/sizes.sh --json > ./sizes/sizes.json && ./scripts/sizes.sh --html > ./sizes/sizes.html"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lookback/lookbook.git"
},
"license": "UNLICENSED",
"files": [
"lib",
"tailwind.config.js",
"dist",
"colors.json"
],
"keywords": [
"css",
"design",
"system",
"components"
],
"author": "Johan Brook <[email protected]>",
"bugs": {
"url": "https://github.com/lookback/lookbook/issues"
},
"homepage": "https://github.com/lookback/lookbook#readme",
"devDependencies": {
"aws-sdk": "^2",
"fast-glob": "^3",
"pa11y": "^8",
"postcss": "^8",
"postcss-cli": "^11",
"prettier": "=2.0.5"
},
"peerDependencies": {
"postcss": "^8"
},
"dependencies": {
"@csstools/postcss-minify": "^2",
"@fullhuman/postcss-purgecss": "^6",
"autoprefixer": "^10",
"postcss-color-function": "^4",
"postcss-import": "^16",
"postcss-nested": "^7",
"tailwindcss": "=2.0.2"
}
}