-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "cometta",
"description": "The easiest way to style with CSS or JSS.",
"version": "0.2.9",
"keywords": ["css", "jss", "style", "css-in-js", "styling"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caioedut/cometta"
},
"author": {
"name": "Caio Teixeira",
"email": "caioedut@gmail.com"
},
"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"
}
}