-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@sweatpants/libra",
"version": "0.0.40",
"description": "",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./api/index.d.ts",
"default": "./api/index.ts"
},
"./config": {
"types": "./api/config.d.ts",
"default": "./api/config.ts"
}
},
"typesVersions": {
"*": {
"config": [
"./api/config.d.ts"
],
"*": [
"./api/index.d.ts"
]
}
},
"bin": {
"libra": "dist/cli.mjs"
},
"files": [
"assets",
"api",
"dist",
"lib",
"src",
"types",
"index.html",
"preview.html",
"styled-system"
],
"scripts": {
"build": "rimraf dist && rollup -c && npm run prepare:panda",
"build:w": "rimraf dist && rollup -c -w",
"lint": "eslint .",
"prepare:panda": "panda codegen && panda cssgen",
"lint:ci": "npm run prepare:panda && eslint . --max-warnings 0",
"prepare:test": "npm run prepare:panda && npm run build && cd tests/react-18 && npm ci",
"dev": "npm run prepare:test && cd tests/react-18 && npm start",
"test": "cd tests/react-18 && npm run preview & cypress open",
"test:ci": "cd tests/react-18 && npm run preview & wait-on http://localhost:9001 && cypress run"
},
"keywords": [
"react"
],
"author": "Jon Ambas <[email protected]>",
"license": "MIT",
"dependencies": {
"@sweatpants/react": "0.8.2",
"@vitejs/plugin-react": "4.2.1",
"classnames": "2.5.1",
"commander": "11.1.0",
"esbuild": "0.20.2",
"fast-glob": "3.3.2",
"framecast": "0.0.5",
"picocolors": "1.0.0",
"react-error-boundary": "3.1.4",
"react-router-dom": "6.22.3",
"vite": "5.2.10",
"vite-plugin-inspect": "0.8.4"
},
"devDependencies": {
"@pandacss/dev": "0.37.2",
"@rollup/plugin-commonjs": "25.0.7",
"@sweatpants/panda-preset": "0.8.1",
"@testing-library/cypress": "10.0.1",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"cypress": "12.17.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"rollup": "4.16.1",
"rollup-plugin-esbuild": "6.1.1",
"typescript": "5.4.5",
"wait-on": "7.2.0"
}
}