-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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": "cometta",
"description": "The easiest way to style using CSS or JSS.",
"version": "0.2.8",
"keywords": [
"css",
"style",
"css-in-js",
"styling"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caioedut/cometta"
},
"author": {
"name": "Caio Teixeira",
"email": "[email protected]"
},
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"example": "tsx scripts/example.ts",
"test": "tsx scripts/test.ts",
"build": "tsx scripts/build.ts",
"publish:stable": "tsx scripts/publish.ts",
"clean": "npx rimraf **/package-lock.json **/yarn.lock **/pnpm-lock.yaml **/bun.lockb **/node_modules --glob"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.5",
"babel-jest": "^29.7.0",
"csstype": "^3.1.3",
"jest": "^29.7.0",
"pmex": "^2.0.8",
"ts-jest": "^29.1.5",
"tsup": "^8.1.0",
"tsx": "^4.15.6",
"typescript": "^5.4.5"
}
}