-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
36 lines (36 loc) · 1.2 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
{
"name": "@thumbtack/thumbprint-atomic",
"description": "Atomic classes for building Thumbtack UI",
"version": "4.4.0",
"author": "Tom Genoni <[email protected]>",
"main": "dist/atomic.css",
"style": "dist/atomic.css",
"type": "module",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "Apache-2.0",
"scripts": {
"start": "yarn clear && yarn generateCss",
"clear": "rm -rf dist",
"generateCss": "mkdir -p dist && tsx ./generate-css.ts && postcss dist/atomic.css --map --use autoprefixer css-mqpacker cssnano --replace",
"prepublishOnly": "../../scripts/should-build-package.js -- yarn start"
},
"devDependencies": {
"@thumbtack/thumbprint-scss": "^4.0.3",
"@thumbtack/thumbprint-tokens": "^12.1.1",
"@types/node-sass-tilde-importer": "^1.0.0",
"autoprefixer": "^9.0.1",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.0",
"node-sass-tilde-importer": "2.0.0-alpha.1",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"sass": "^1.49.9",
"tsx": "^3.12.2"
}
}