-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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": "tamia",
"description": "Panda CSS preset for component-driven development",
"version": "5.0.20",
"sideEffects": false,
"scripts": {
"start": "panda studio",
"build": "panda studio --build",
"pretest": "npm run lint",
"test": "npm run typecheck",
"posttest": "npm run format",
"prepublishOnly": "npm run compile",
"lint": "eslint . --cache --fix",
"typecheck": "tsc --noEmit",
"compile": "tsc --project tsconfig.build.json",
"format": "prettier --log-level warn --write \"**/*.{js,cjs,mjs,ts,tsx,md,astro,json}\"",
"prepare": "husky; panda codegen"
},
"homepage": "https://tamialib.netlify.app",
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me/"
},
"repository": {
"type": "git",
"url": "https://github.com/sapegin/tamia.git"
},
"bugs": {
"url": "https://github.com/sapegin/tamia/issues"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"browserslist": [
">1%",
"last 2 versions",
"Firefox ESR",
"not dead"
],
"peerDependencies": {
"@pandacss/dev": ">=0.40"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.0.0",
"@pandacss/studio": "^0.48.1",
"@types/react": "^18.2.74",
"astro": "^5.0.3",
"eslint": "^9.16.0",
"eslint-config-tamia": "^9.2.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"kleur": "^4.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"react": "^18",
"react-dom": "^18",
"typescript": "^5.7"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,astro,json,md}": "prettier --write",
"*.{js,cjs,mjs,ts,tsx,astro}": "eslint --cache --fix"
}
}