-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "just-styled",
"version": "0.1.1",
"files": ["dist"],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup",
"check": "pnpm run /check:+/",
"check:biome": "biome check ./",
"check:tsc": "tsc --noEmit",
"fix": "biome check --write ./",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage.enabled true",
"prepublish": "pnpm run build"
},
"dependencies": {
"@sindresorhus/fnv1a": "^3.1.0",
"csstype": "^3.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jsdom": "^21.1.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "2.1.2",
"jsdom": "^25.0.1",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"engines": {
"pnpm": ">=9.12.0"
},
"packageManager": "[email protected]",
"description": "",
"keywords": ["React", "CSS-in-JS", "Next.js"],
"author": "Yuku Kotani ([email protected])",
"license": "Apache-2.0"
}