|
1 | 1 | { |
2 | 2 | "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", |
4 | 11 | "repository": { |
5 | 12 | "type": "git", |
6 | 13 | "url": "https://github.com/codesandbox/codesandbox-client", |
7 | 14 | "directory": "packages/components" |
8 | 15 | }, |
| 16 | + "bugs": { |
| 17 | + "url": "https://github.com/codesandbox/codesandbox-client/issues" |
| 18 | + }, |
| 19 | + "homepage": "https://github.com/codesandbox/codesandbox-client#readme", |
9 | 20 | "files": [ |
10 | 21 | "lib" |
11 | 22 | ], |
12 | | - "main": "lib/index", |
13 | | - "source": true, |
14 | 23 | "scripts": { |
15 | 24 | "build": "yarn build:lib", |
16 | 25 | "build:dev": "yarn build", |
17 | | - "build:lib": "yarn clean && yarn tsc", |
| 26 | + "build:lib": "yarn clean && tsc", |
18 | 27 | "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", |
20 | 33 | "lint": "eslint --ext .js,.ts,.tsx src", |
21 | | - "start": "yarn tsc --watch", |
| 34 | + "prepublish": "yarn build", |
| 35 | + "start": "tsc --watch", |
22 | 36 | "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" |
28 | 38 | }, |
29 | 39 | "dependencies": { |
30 | 40 | "@reach/auto-id": "^0.10.1", |
|
59 | 69 | "peerDependencies": { |
60 | 70 | "react": "^16.9.0", |
61 | 71 | "react-dom": "^16.9.0" |
| 72 | + }, |
| 73 | + "engines": { |
| 74 | + "node": ">=10.13.0", |
| 75 | + "npm": ">=6", |
| 76 | + "yarn": ">=1" |
62 | 77 | } |
63 | 78 | } |
0 commit comments