-
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
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
{
"name": "@figspec/react",
"description": "React binding for figspec",
"keywords": [
"figma",
"react"
],
"version": "1.0.0",
"contributors": [
{
"name": "Shota Fuji",
"email": "pockawoooh@gmail.com"
}
],
"license": "MIT",
"module": "esm/es2015/index.js",
"main": "cjs/es2016/index.js",
"browser": "esm/es2015/index.js",
"types": "esm/es2015/index.d.ts",
"files": [
"esm",
"cjs"
],
"sideEffects": [
"./src/index.ts",
"./{cjs,esm}/*/index.js"
],
"dependencies": {
"@figspec/components": "^1.0.0",
"@lit-labs/react": "^1.0.2"
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/react": "^6.4.0",
"babel-loader": "^8.1.0",
"react": "^16.14.0",
"react-is": "^16.13.1",
"typescript": "^4.1.0-beta"
},
"scripts": {
"build:esm": "tsc --outDir esm/es2015",
"build:cjs": "tsc --outDir cjs/es2016 --target es2016 --module CommonJS",
"build:default": "yarn build:esm && yarn build:cjs",
"build": "yarn build:default",
"storybook": "start-storybook -p 6007",
"build-storybook": "build-storybook",
"prepublishOnly": "yarn build"
}
}