-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@stellaraf/logo",
"version": "0.3.5",
"description": "Stellar's Logo as a React Component",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./*": {
"require": "./dist/cjs/*.js",
"import": "./dist/esm/*.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stellaraf/logo"
},
"bugs": {
"url": "https://github.com/stellaraf/logo/issues"
},
"homepage": "https://github.com/stellaraf/logo#readme",
"files": [
"dist/",
"esm/"
],
"author": "Matt Love <matt@stellar.tech>",
"license": "BSD-3-Clause-Clear",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"format": "prettier --loglevel warn -c .",
"format:fix": "prettier --loglevel warn -w .",
"build": "node --no-warnings --loader ts-node/esm build.ts && tsc --emitDeclarationOnly",
"storybook": "start-storybook -p 6006 -s public"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@types/node": "^18.8.2",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^44.0.0",
"framer-motion": "^10.16.1",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook-addon-turbo-build": "^1.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"framer-motion": "^9 || ^10",
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
}
}