-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1005 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1005 Bytes
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
{
"name": "stylesheet-extensions",
"private": true,
"workspaces": [
"packages/zeplin-extension-style-kit",
"packages/base-extension",
"packages/zeplin-css-extension",
"packages/zeplin-less-extension",
"packages/zeplin-sass-extension",
"packages/zeplin-scss-extension",
"packages/zeplin-stylus-extension",
"packages/zeplin-tailwind-extension"
],
"scripts": {
"test": "npm run test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"start:css": "npm run start --workspace=css",
"start:less": "npm run start --workspace=less",
"start:sass": "npm run start --workspace=sass",
"start:scss": "npm run start --workspace=scss",
"start:stylus": "npm run start --workspace=stylus",
"start:tailwind": "npm run start --workspace=tailwind"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}