forked from auth0/universal-login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 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
60
61
62
63
64
65
66
67
{
"name": "universal-login",
"version": "1.0.0",
"type": "module",
"description": "",
"workspaces": {
"packages": [
"packages/*"
]
},
"license": "ISC",
"scripts": {
"lint": "npm run lint --workspaces",
"test": "npm test --workspaces",
"build": "npm run build --workspaces",
"dev:acul": "npm run dev --workspace @auth0/auth0-acul-js",
"docs": "npm run docs --workspaces",
"docs:unified": "node ./scripts/docs-unified.js",
"format": "npm run format --workspaces",
"preinstall": "node ./scripts/check-node-version.js && node ./scripts/block-local-install.js"
},
"engines": {
"node": "^22.0.0"
},
"engineStrict": true,
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@shikijs/core": "^1.24.0",
"@shikijs/engine-javascript": "^1.24.0",
"@shikijs/engine-oniguruma": "^1.24.0",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"chalk": "^5.6.2",
"chokidar-cli": "^3.0.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdown-it": "^14.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"ts-jest": "^29.2.5",
"ts-morph": "^25.0.1",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typedoc": "^0.28.2",
"typedoc-docusaurus-theme": "^1.4.2",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"yaml": "^2.6.1"
},
"dependencies": {
"marked": "^16.3.0"
}
}