-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 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
56
57
58
59
60
61
{
"name": "sprinkled-react",
"version": "0.2.0",
"description": "A library to bind vanilla-extract/sprinkles with react components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"README.md",
"package.json"
],
"scripts": {
"format": "prettier src/**/* --write",
"build": "tsc -p tsconfig.json",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-is": "^17.0.3",
"@vanilla-extract/jest-transform": "^1.0.2",
"@vanilla-extract/sprinkles": "^1.5.1",
"babel-jest": "^29.4.2",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jsdom": "^21.1.0",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"typescript": "^4.9.5"
},
"repository": {
"url": "https://github.com/dev-afzalansari/sprinkled-react",
"type": "git"
},
"homepage": "https://github.com/dev-afzalansari/sprinkled-react",
"bugs": {
"url": "https://github.com/dev-afzalansari/sprinkled-react/issues"
},
"license": "MIT",
"keywords": [
"vanilla extract",
"vanilla extract sprinkles",
"vanilla extract react",
"sprinkled react"
],
"dependencies": {
"react-fast-compare": "^3.2.0"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}