-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "radipan",
"version": "0.0.23",
"description": "Zero-runtime static CSS extractor based on inline `css` prop.",
"author": "Yumin Chen <[email protected]>",
"type": "module",
"main": "index.js",
"module": "dist/radipan.js",
"types": "dist/radipan.d.ts",
"keywords": [
"css",
"static",
"extraction"
],
"bin": "dist/bin.js",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"test": "jest",
"prepare": "panda codegen",
"build": "npm run prepare && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yumin-chen/radipan.git"
},
"bugs": {
"url": "https://github.com/yumin-chen/radipan/issues"
},
"homepage": "https://github.com/yumin-chen/radipan#readme",
"license": "MIT",
"files": [
"dist",
"index.js",
"index.ts",
"config.js",
"config.ts",
"css-extractor.js",
"css-extractor.ts",
"design-system.js",
"design-system.ts",
"jsx-runtime.js",
"jsx-runtime.ts",
"jsx-dev-runtime.js",
"jsx-dev-runtime.ts",
"tags.js",
"tags.ts",
"extractor.tsconfig.json",
"styles.css"
],
"dependencies": {
"@babel/core": "latest",
"@pandacss/dev": "latest",
"typescript": "latest"
},
"devDependencies": {
"@jest/globals": "latest",
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-json": "latest",
"@rollup/plugin-node-resolve": "latest",
"@types/mock-fs": "latest",
"@types/react": "latest",
"esbuild": "latest",
"jest": "latest",
"mock-fs": "latest",
"prettier": "latest",
"rollup": "^3.27.2",
"rollup-plugin-dts": "latest",
"rollup-plugin-esbuild": "latest",
"ts-jest": "latest",
"ts-node": "latest"
}
}