-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "css-in-js-utilities",
"version": "1.0.0-beta.0",
"description": "A modern collection of helper functions for CSS-in-JS libraries",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc && echo 'Build completed successfully!'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heyameen/CSS-in-JS-Utilities.git"
},
"files": [
"CONTRIBUTE.md",
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"css-in-js",
"utilities",
"styling",
"react",
"typescript"
],
"author": "Ameen Alade",
"license": "ISC",
"bugs": {
"url": "https://github.com/heyameen/CSS-in-JS-Utilities/issues"
},
"homepage": "https://github.com/heyameen/CSS-in-JS-Utilities#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
},
"dependencies": {
"colord": "^2.9.3"
}
}