-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
56
57
58
59
60
61
62
{
"name": "@codechem/chakra-ui-animations",
"version": "1.0.0",
"description": "Chakra UI Animations is a dependancy which offers you pre-built animations for your Chakra UI components.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/codechem/chakra-ui-animations.git"
},
"bugs": {
"url": "/~https://github.com/codechem/chakra-ui-animations/issues"
},
"homepage": "/~https://github.com/codechem/chakra-ui-animations#readme",
"keywords": [
"react",
"chakra-ui",
"animation"
],
"author": "Andrej Acevski",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --config tsup.config.ts",
"dev": "tsup src/index.ts --config tsup.config.ts --watch",
"lint": "eslint src/**/*.ts* --fix",
"release": "changeset publish"
},
"peerDependencies": {
"@chakra-ui/react": ">=2.0.0",
"@chakra-ui/system": ">=2.0.0",
"@emotion/react": ">=11.0.0",
"@emotion/styled": ">=11.0.0",
"react": ">=18.0.0"
},
"devDependencies": {
"@chakra-ui/react": "latest",
"@chakra-ui/system": "latest",
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.21.1",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@types/node": "^18.11.0",
"@types/react": "latest",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"react": "latest",
"ts-node": "^10.7.0",
"tsup": "^6.1.2",
"typescript": "^4.6.2"
}
}