-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "@kinde-oss/kinde-remix-sdk",
"version": "1.1.3",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./types": {
"import": {
"types": "./dist/types/types.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "npx tsc && cp src/types.d.ts dist/types/types.d.ts && genversion --es6 src/utils/version.js && npx rollup --c",
"release": "release-it",
"test": "vitest",
"test:coverage": "vitest --coverage",
"dev:prepare": "rm -rf playground && git clone https://github.com/kinde-starter-kits/kinde-auth-remix-starter-kit.git playground && npm link && cd playground && mv .env.sample .env && npm uninstall @kinde-oss/kinde-remix-sdk && rm -rf .git && npm link @kinde-oss/kinde-remix-sdk",
"dev": "cd playground && npx remix dev --manual",
"lint": "eslint ./src --ext .ts --fix && prettier --write ."
},
"author": {
"name": "Kinde",
"email": "[email protected]",
"url": "https://kinde.com"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-remix-sdk"
},
"bugs": "https://github.com/kinde-oss/kinde-remix-sdk",
"homepage": "https://kinde.com",
"dependencies": {
"@kinde-oss/kinde-typescript-sdk": "^2.8.0",
"jwt-decode": "^4.0.0",
"universal-cookie": "^7.1.4"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"genversion": "^3.2.0",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"rollup": "^4.9.4",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"peerDependencies": {
"@remix-run/node": "^2.4.1"
}
}