-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "@workos-inc/authkit-js",
"version": "0.8.0",
"description": "AuthKit SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"!src/testing/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/workos/authkit-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/workos/authkit-js/issues"
},
"homepage": "https://github.com/workos/authkit-js#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^14.0.0-beta.15",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.2",
"typescript": "^5.5.3"
}
}