-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.88 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
{
"name": "@spellcraft/ui",
"description": "Static GPT Tailwind generator for Next.js.",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"platform": "browser",
"engines": {
"node": ">=14"
},
"style": "dist/components/index.css",
"types": "dist/index.d.ts",
"files": [
"dist",
"document.js",
"document.d.ts",
"client.js",
"client.d.ts",
"server.js",
"server.d.ts"
],
"exports": {
"./package.json": "./package.json",
"./document": "./document.js",
"./client": "./client.js",
"./server": "./server.js"
},
"scripts": {
"export": "tsmodule build --raw-process-env",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"test": "ava",
"prepublishOnly": "pnpm export && pnpm test"
},
"devDependencies": {
"@tsmodule/react": "^12.0.0",
"@tsmodule/tsmodule": "^44.5.0",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"autoprefixer": "^10.4.14",
"ava": "^5.2.0",
"cssnano": "^6.0.1",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.4",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"next": "^13.3.4",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@twind/next": "^1.0.10",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"twind": "^0.16.19"
},
"release-it": {
"git": {
"commitMessage": "release: v${version}",
"tagAnnotation": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}