-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.37 KB
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
{
"name": "@outseta/toolkit",
"version": "0.7.1",
"description": "Outseta's toolkit for visual website builders",
"type": "module",
"exports": {
"./framer/overrides": {
"import": "./dist/framer/overrides.js",
"types": "./dist/framer/overrides/index.d.ts"
},
"./framer/test": {
"import": "./dist/framer/test.js",
"types": "./dist/framer/test/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --project tsconfig.build.json && npm run clean-types",
"clean-types": "rm -rf dist/auth-store dist/outseta",
"dev": "vite build --watch",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"serve": "npm run build && node server.js",
"postversion": "node scripts/update-readme-urls.js"
},
"keywords": [
"outseta",
"toolkit",
"authentication",
"react",
"hooks",
"zustand",
"framer",
"overrides",
"auth",
"saas"
],
"author": "Outseta",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"lodash": "^4.17.21",
"zustand": "^5.0.8"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.20",
"@types/node": "^24.3.1",
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"express": "^4.18.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
}
}