-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "@solgt/supertokens-sync",
"version": "0.1.4",
"description": "Sync your Supertokens tenants, roles and permissions to a local file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"supertokens-sync": "dist/index.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Solgt/supertokens-sync.git"
},
"keywords": [
"supertokens", "rbac", "pbac", "sync", "roles", "permissions"
],
"author": "Filip Niklas",
"license": "MIT",
"bugs": {
"url": "https://github.com/Solgt/supertokens-sync/issues"
},
"homepage": "https://github.com/Solgt/supertokens-sync#readme",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^22.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"prettier": "^3.3.3",
"zod": "^3.23.8"
}
}