-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "@thumbtack/thumbprint-global-css",
"description": "Global reset, body, and anchor styling for building Thumbtack UI",
"version": "0.1.21",
"author": "Tom Genoni <[email protected]>",
"main": "dist/thumbprint-global.css",
"style": "dist/thumbprint-global.css",
"type": "module",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "Apache-2.0",
"scripts": {
"start": "yarn clear && yarn generate-css",
"clear": "rm -rf dist",
"generate-css": "mkdir -p dist && tsx ./generate-css.ts && postcss dist/thumbprint-global.css --map --use autoprefixer cssnano --replace",
"prepublishOnly": "../../scripts/should-build-package.js -- yarn start"
},
"devDependencies": {
"@thumbtack/thumbprint-tokens": "^12.1.1",
"@types/prettier": "^2.6.0",
"autoprefixer": "^9.0.1",
"cssnano": "^4.1.0",
"node-sass-tilde-importer": "2.0.0-alpha.1",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"sass": "^1.51.0",
"tsx": "^3.12.2"
},
"bugs": {
"url": "https://github.com/thumbtack/thumbprint/issues"
},
"homepage": "https://github.com/thumbtack/thumbprint/blob/master/packages/thumbprint-global-css/"
}