Skip to content

Commit e88f49d

Browse files
committed
Cleanup package.json
1 parent 240939f commit e88f49d

File tree

1 file changed

+26
-11
lines changed

1 file changed

+26
-11
lines changed

packages/components/package.json

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,40 @@
11
{
22
"name": "@codesandbox/components",
3-
"version": "0.0.1",
3+
"version": "0.0.3",
4+
"main": "lib/index",
5+
"source": true,
6+
"contributors": [
7+
"Sara Vieira <sara@codesandbox.io> (https://iamsaravieira.com)",
8+
"Siddharth Kshetrapal <sid@codesandbox.io> (https://sid.st)"
9+
],
10+
"license": "MIT",
411
"repository": {
512
"type": "git",
613
"url": "https://github.com/codesandbox/codesandbox-client",
714
"directory": "packages/components"
815
},
16+
"bugs": {
17+
"url": "https://github.com/codesandbox/codesandbox-client/issues"
18+
},
19+
"homepage": "https://github.com/codesandbox/codesandbox-client#readme",
920
"files": [
1021
"lib"
1122
],
12-
"main": "lib/index",
13-
"source": true,
1423
"scripts": {
1524
"build": "yarn build:lib",
1625
"build:dev": "yarn build",
17-
"build:lib": "yarn clean && yarn tsc",
26+
"build:lib": "yarn clean && tsc",
1827
"build:storybook": "build-storybook -c .storybook -o public",
19-
"clean": "rimraf lib && yarn rimraf node_modules/@types/react && yarn rimraf node_modules/@types/react-native",
28+
"chromatic": "if-env CIRCLE_BRANCH=master && yarn chromatic:master || yarn chromatic:branch",
29+
"chromatic:base": "CHROMATIC_APP_CODE=nffds42ndde chromatic --build-script-name=build:storybook --exit-zero-on-changes",
30+
"chromatic:branch": "yarn chromatic:base",
31+
"chromatic:master": "yarn chromatic:base --auto-accept-changes",
32+
"clean": "rimraf lib && rimraf node_modules/@types/react && rimraf node_modules/@types/react-native",
2033
"lint": "eslint --ext .js,.ts,.tsx src",
21-
"start": "yarn tsc --watch",
34+
"prepublish": "yarn build",
35+
"start": "tsc --watch",
2236
"start:storybook": "start-storybook",
23-
"typecheck": "tsc --noEmit --pretty",
24-
"chromatic": "if-env CIRCLE_BRANCH=master && yarn chromatic:master || yarn chromatic:branch",
25-
"chromatic:master": "CHROMATIC_APP_CODE=nffds42ndde chromatic --build-script-name=build:storybook --exit-zero-on-changes --auto-accept-changes",
26-
"chromatic:branch": "CHROMATIC_APP_CODE=nffds42ndde chromatic --build-script-name=build:storybook --exit-zero-on-changes",
27-
"prepublish": "yarn build"
37+
"typecheck": "tsc --noEmit --pretty"
2838
},
2939
"dependencies": {
3040
"@reach/auto-id": "^0.10.1",
@@ -59,5 +69,10 @@
5969
"peerDependencies": {
6070
"react": "^16.9.0",
6171
"react-dom": "^16.9.0"
72+
},
73+
"engines": {
74+
"node": ">=10.13.0",
75+
"npm": ">=6",
76+
"yarn": ">=1"
6277
}
6378
}

0 commit comments

Comments
 (0)