This repository has been archived by the owner on May 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
81 lines (81 loc) · 2.11 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
75
76
77
78
79
80
81
{
"name": "lucia",
"version": "0.6.5",
"description": "3kb library for tiny web apps",
"main": "dist/lucia.umd.js",
"module": "dist/lucia.esm.js",
"browser": "dist/lucia.js",
"types": "dist/lucia.d.ts",
"scripts": {
"dev": "sh scripts/dev.sh",
"build": "sh scripts/build.sh",
"docs": "typedoc src/index.ts",
"lint": "eslint src/**",
"cleanup": "prettier --write src --parser typescript",
"test": "jest --silent --runInBand",
"release": "sh scripts/release.sh",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidenybai/lucia.git"
},
"exports": {
"browser": "./dist/lucia.js",
"require": "./dist/lucia.cjs.js",
"import": "./dist/lucia.esm.js"
},
"sideEffects": false,
"keywords": [
"lucia",
"lucia.js",
"tiny",
"javascript",
"library",
"web",
"ui",
"browser"
],
"author": "Aiden Bai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aidenybai/lucia/issues"
},
"homepage": "https://lucia.js.org",
"engines": {
"node": ">=14.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/aidenybai/lucia?sponsor=1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-beep": "^1.0.0",
"@rollup/plugin-commonjs": "23.0.1",
"@rollup/plugin-eslint": "^9.0.1",
"@rollup/plugin-node-resolve": "15.0.0",
"@rollup/plugin-strip": "^3.0.0",
"@testing-library/dom": "^8.0.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^8.0.1",
"jest": "^27.2.0",
"lint-staged": "^13.0.0",
"million": "^1.0.0",
"prettier": "^2.1.2",
"rollup": "2.79.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.2.0",
"typedoc": "^0.23.1",
"typescript": "^4.2.4",
"vite": "^3.0.0"
}
}