-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.61 KB
/
package.json
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
{
"name": "@specimen/foundation",
"version": "2.3.3",
"description": "A cool design system created by Felix Sebastian for side projects",
"homepage": "https://felixsebastian.github.io/specimen/",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"build": "rm -rf lib && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module esnext --outDir lib/esm",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/felixsebastian/specimen.git"
},
"author": "Felix Sebastian",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixsebastian/specimen/issues"
},
"devDependencies": {
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint-config-prettier": "^8.5.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@capsizecss/core": "^3.0.0",
"@capsizecss/metrics": "^0.3.0",
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@types/color-convert": "^2.0.0",
"@types/lodash": "^4.14.181",
"color-convert": "^2.0.1",
"eslint-plugin-prettier": "^4.2.1",
"lodash": "^4.17.21"
}
}